
16 May
2005
16 May
'05
4:16 p.m.
Robert Ramey wrote:
2) Please add support for serialization to mersenne_twister.hpp. All that's needed is this:
template<class Archive> void serialize(Archive & ar, const unsigned int version) { ar & x; ar & i; }
If these are added, could they use BOOST_SERIALIZATION_NVP(x) and BOOST_SERIALIZATION_NVP(i) otherwise they won't work with XML archives. Cheers Russell