source: src/Potentials/InternalCoordinates/Coordinator.hpp@ 775f3f

Adding_MD_integration_tests Adding_StructOpt_integration_tests AutomationFragmentation_failures Candidate_v1.6.1 ChemicalSpaceEvaluator Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Exclude_Hydrogens_annealWithBondGraph ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_contraction-expansion Gui_displays_atomic_force_velocity JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool PythonUI_with_named_parameters StoppableMakroAction TremoloParser_IncreasedPrecision
Last change on this file since 775f3f 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
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.