
13 Aug
2008
13 Aug
'08
9 a.m.
Richard Webb wrote:
As an observation, i see that the mersenne_twister in boost/tr1/random.hpp says:
void seed(unsigned long value) { m_gen.seed(value == 0 ? 5489UL : value); }
and the constructor says:
explicit mersenne_twister(unsigned long value) : m_gen(value == 0 ? 4357UL : value){}
Should those both be 5489?
Yep, will fix, John.