
15 Aug
2004
15 Aug
'04
2:07 a.m.
Is the random number generator portable across platforms (i.e. will you get the same results on Windows as on PPC Linux)?
I'm not an expert on this, but I don't see why not. Here it is in its entirety:
/** Returns the next pseudorandom value using the Linear Congruential Generator algorithm (LCG) with the parameters (m = 2^32, a = 69069, b = 1). These parameters give a full-period generator, i.e. it is guaranteed to go through all integers < 2^32 (see http://random.mat.sbg.ac.at/~charly/server/server.html) */ guint32 lcg_next (guint32 prev) { return (guint32) (( 69069 * (guint64) prev + 1 ) % 4294967296ll); }