
12 Aug
2008
12 Aug
'08
8:02 p.m.
Gunther Lenz <g.lenz <at> 3gsm.at> writes:
There's the same precondition in IBM XL C/C++ V9.0 for AIX too:
It looks like MS and IBM are both using the Dinkumware lib - the documentation for all 3 is exactly the same. 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?