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);
105namespace serialization
110template<
class Archive>
111inline void save_construct_data(
114 const std::vector<double>& state_variables = t->rGetConstStateVariables();
115 ar & state_variables;
121template<
class Archive>
122inline void load_construct_data(
125 std::vector<double> state_variables;
126 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)