Does anyone have a favorite boost random number generator and can you explain a little on how to implement it into code. I am trying to get the mersenne twister to work and was wondering if anyone had preference towards one of the others.
|
feedback
|
|
This code is adapted from the boost manual at http://www.boost.org/doc/libs/1_42_0/libs/random/index.html:
To explain the bits:
As it stands, this code produces the same sequence of dice throws each time. You can randomise the generator in its constructor:
or by using its seed() member. | |||||||
feedback
|
|
There's no one-size-fits-all RNG. Sometimes statistical properties are important, sometimes cryptology, sometimes raw speed. | |||
feedback
|