Boost logo

Boost :

From: Richard Webb (richard.webb_at_[hidden])
Date: 2008-08-12 16:02:10


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?


Boost list run by bdawes at acm.org, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk