CMlib
Cell mapping algorithms in C++
system.h
Go to the documentation of this file.
1 #ifndef CELL_MAPPING_CPP_SYSTEM_H
2 #define CELL_MAPPING_CPP_SYSTEM_H
3 
4 namespace cm {
5 
6  template <class StateVectorType>
8  private:
9  public:
10  virtual StateVectorType step(const StateVectorType& state) const = 0;
11  };
12 }
13 
14 #endif //CELL_MAPPING_CPP_SYSTEM_H
virtual StateVectorType step(const StateVectorType &state) const =0
Definition: system.h:7
Definition: cell.h:6