36#ifndef DELTANOTCHINTERIORODESYSTEM_HPP
37#define DELTANOTCHINTERIORODESYSTEM_HPP
40#include <boost/serialization/base_object.hpp>
45#include "AbstractOdeSystem.hpp"
59 friend class boost::serialization::access;
66 template<
class Archive>
67 void serialize(Archive & archive,
const unsigned int version)
69 archive & boost::serialization::base_object<AbstractOdeSystem>(*
this);
107namespace serialization
112template<
class Archive>
113inline void save_construct_data(
116 const std::vector<double>& state_variables = t->rGetConstStateVariables();
117 ar & state_variables;
123template<
class Archive>
124inline void load_construct_data(
127 std::vector<double> state_variables;
128 ar & state_variables;
gcov doesn't like this file...
#define CHASTE_CLASS_EXPORT(T)
void EvaluateYDerivatives(double time, const std::vector< double > &rY, std::vector< double > &rDY)
void serialize(Archive &archive, const unsigned int version)
~DeltaNotchInteriorOdeSystem()