I am looking for a way to generate pseudo random number sequences that will yield identical sequence results for a given seed across any platform. I am assuming that rand() / srand() is not going to be consistent (I could easily be wrong about this assumption).
I am looking for a way to generate pseudo random number sequences that will
Share
Something like a Mersenne Twister (from Boost.Random) is deterministic.