36 #ifndef DELTANOTCHODESYSTEM_HPP_
37 #define DELTANOTCHODESYSTEM_HPP_
40 #include <boost/serialization/base_object.hpp>
45 #include "AbstractOdeSystem.hpp"
57 friend class boost::serialization::access;
64 template<
class Archive>
65 void serialize(Archive & archive,
const unsigned int version)
67 archive & boost::serialization::base_object<AbstractOdeSystem>(*this);
105 namespace serialization
110 template<
class Archive>
111 inline void save_construct_data(
115 ar & state_variables;
121 template<
class Archive>
122 inline void load_construct_data(
125 std::vector<double> state_variables;
126 ar & state_variables;
void EvaluateYDerivatives(double time, const std::vector< double > &rY, std::vector< double > &rDY)
const std::vector< double > & rGetConstStateVariables() const
void serialize(Archive &archive, const unsigned int version)
DeltaNotchOdeSystem(std::vector< double > stateVariables=std::vector< double >())
#define CHASTE_CLASS_EXPORT(T)