I'm in need of a C++ (pseudo, i don't care) random number generator that can get me different numbers every time I call the function. This could be simply the way I seed it, maybe there's a better method, but every random generator I've got doesn't generate a new number every time it's called. I've got a need to get several random numbers per second on occasion, and any RNG i plug in tends to get the same number several times in a row. Of course, I know why, because it's seeded by the second, so it only generates a new number every second, but I need to, somehow, get a new number on every call. Can anyone point me in the right direction?
|
|
|
|
|
|
|
Sounds like you do it like this:
Which would explain why you get the same number within one second. But you have to do it like this:
And call srand once at program startup. |
||
|
|
|
Boost.Random has a variety of pretty good random number generators. |
||
|
|
|
|
If you're generating a large number of random numbers, you could try an XORShift generator. For longs (8 bit):
|
|||
|
|
|
|
You should only seed the PRNG once. |
||
|
|
|
|
You only need to seed the generator once with |
||
|
|
