source: src/Potentials/InternalCoordinates/Coordinator.hpp@ a844d8

Candidate_v1.6.1
Last change on this file since a844d8 was 4e6a60, checked in by Frederik Heber <heber@…>, 11 years ago

Added CoordinatorFactory that returns the correct Coordinator for a given graph.

  • extended HomologyGraph interface by getter for nodes and edges.
  • CoordinatorFactory::create() decides by number of nodes and connected_edges which coordinator to return.
  • Property mode set to 100644
File size: 599 bytes
Line 
1/*
2 * Coordinator.hpp
3 *
4 * Created on: 03.09.2013
5 * Author: heber
6 */
7
8#ifndef COORDINATOR_HPP_
9#define COORDINATOR_HPP_
10
11// include config.h
12#ifdef HAVE_CONFIG_H
13#include <config.h>
14#endif
15
16#include "FunctionApproximation/FunctionModel.hpp"
17
18#include <boost/shared_ptr.hpp>
19
20/** This class is the interface for all functors converting
21 * a list of distances (arguments_t) into internal coordinates.
22 *
23 */
24struct Coordinator
25{
26 typedef boost::shared_ptr<Coordinator> ptr;
27
28 virtual double operator()(const FunctionModel::arguments_t &arguments) const=0;
29};
30
31#endif /* COORDINATOR_HPP_ */
Note: See TracBrowser for help on using the repository browser.