Multiple random number generator states in c/Unix - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T20:34:09Zhttp://stackoverflow.com/feeds/question/1063074http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1063074/multiple-random-number-generator-states-in-c-unix1Multiple random number generator states in c/UnixEyal2009-06-30T11:00:50Z2009-06-30T14:37:04Z
<p>I'm using srandom() and random() to generate random numbers in c on a Unix system. I would like to have multiple RNGs. Each one, given the same seed, should output the same sequence. I would also like to save and restore the state of each one. Here's a pseudocode example:</p>
<pre><code>R1 = new_rng(5); //5 is the seed
R2 = new rng(5); //5 is the seed here, too.
a = R1.random();
b = R1.random();
d = R2.random(); //a == d
s1 = R2.get_state(); //save the state of R2
e = R2.random(); //b == e
R2.set_state(s1); //restore the state of R2
f = R2.random(); //b == f
</code></pre>
<p>How do I do this? Sometimes the RNGs will fork into different threads and I need to replicate the state of the RNG when creating a new thread, too.</p>
http://stackoverflow.com/questions/1063074/multiple-random-number-generator-states-in-c-unix/1063101#10631010Answer by arnsholt for Multiple random number generator states in c/Unixarnsholt2009-06-30T11:09:46Z2009-06-30T11:09:46Z<p>I'm not sure you can rely on your PRNG to produce the exact same sequence given an identical seed actually. I know that some methods work that way, but I believe that some of the better ones include a certain amount of non-determinism, so that an identical seed may lead to a different sequence. You'll have to go through your libc documentation with a fine-toothed comb and see if this is mentioned somewhere. If not, check the code (if you're so lucky to have access to the code).</p>
<p>At any rate, this will couple your application very tightly indeed to the PRNG implementation in your libc. You'll definitely be bound to the flavour of libc you're developing on, and maybe even libc version. If this feature is very important, you may have to reimplement random number generation in your app to ensure portability and reproducability.</p>
http://stackoverflow.com/questions/1063074/multiple-random-number-generator-states-in-c-unix/1063131#10631311Answer by avakar for Multiple random number generator states in c/Unixavakar2009-06-30T11:17:11Z2009-06-30T11:17:11Z<p>Read <a href="http://en.wikipedia.org/wiki/Mersenne%5FTwister" rel="nofollow">this article on Mersenne twister</a>. There are links to several implementations at the very bottom. (In other words, implement a PRNG yourself.)</p>
http://stackoverflow.com/questions/1063074/multiple-random-number-generator-states-in-c-unix/1063185#10631851Answer by dfa for Multiple random number generator states in c/Unixdfa2009-06-30T11:31:34Z2009-06-30T11:31:34Z<p>there are some C library extension on various UNIX flavours:</p>
<ul>
<li>BSD like random, check initstate/setstate</li>
<li>_r variants (random_r, srandom_r, initstate_r, etc)</li>
<li>rand_r (stdlib.h)</li>
</ul>
<p>which flavour is supported by your target UNIX?</p>
http://stackoverflow.com/questions/1063074/multiple-random-number-generator-states-in-c-unix/1063187#10631871Answer by laalto for Multiple random number generator states in c/Unixlaalto2009-06-30T11:31:57Z2009-06-30T11:31:57Z<p>Use <code>rand_r(unsigned *seed)</code> instead of <code>srand()</code> and <code>rand()</code>. That way you can maintain multiple random seeds.</p>
http://stackoverflow.com/questions/1063074/multiple-random-number-generator-states-in-c-unix/1063942#10639422Answer by mark4o for Multiple random number generator states in c/Unixmark4o2009-06-30T14:18:04Z2009-06-30T14:37:04Z<p>Use <a href="http://www.opengroup.org/onlinepubs/9699919799/functions/drand48.html" rel="nofollow"><code>erand48()</code>/<code>nrand48()</code>/<code>jrand48()</code></a> to generate double precision floating point, non-negative long integer, or signed long integer random numbers, respectively. These functions allow you to have as many independent sequences as desired; the state is passed in as an argument and can easily be saved and restored. Furthermore, the sequence is defined by the standard and will not vary across runs, even on different platforms.</p>
<p>Some other answers suggest <a href="http://www.opengroup.org/onlinepubs/9699919799/functions/rand.html" rel="nofollow"><code>rand_r()</code></a>. This function is obsolescent in POSIX.1-2008, which contains this note:</p>
<blockquote>
<p>The <code>drand48()</code> function provides a much more elaborate random number generator.</p>
<p>The limitations on the amount of state that can be carried between one function call and another mean the <code>rand_r()</code> function can never be implemented in a way which satisfies all of the requirements on a pseudo-random number generator. Therefore this function should be avoided whenever non-trivial requirements (including safety) have to be fulfilled.</p>
<p>The <code>rand_r()</code> function may be removed in a future version.</p>
</blockquote>