Candidate_v1.6.1
ChemicalSpaceEvaluator
Gui_displays_atomic_force_velocity
PythonUI_with_named_parameters
TremoloParser_IncreasedPrecision
Last change
on this file since 8819d2 was 4e6a60, checked in by Frederik Heber <heber@…>, 12 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
|
Rev | Line | |
---|
[291eca] | 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 |
|
---|
[4e6a60] | 18 | #include <boost/shared_ptr.hpp>
|
---|
| 19 |
|
---|
[291eca] | 20 | /** This class is the interface for all functors converting
|
---|
| 21 | * a list of distances (arguments_t) into internal coordinates.
|
---|
| 22 | *
|
---|
| 23 | */
|
---|
| 24 | struct Coordinator
|
---|
| 25 | {
|
---|
[4e6a60] | 26 | typedef boost::shared_ptr<Coordinator> ptr;
|
---|
| 27 |
|
---|
[291eca] | 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.