I'm making a monte carlo simulation in C++ and I was using Boost for random numbers. I used GSL a bit too. But it turns out random number generation is one of my biggest runtime inefficiencies, so I just started using good old rand() from cstdlib.
How badly am I risking to have poor random number properties on my simulation? I use around 10^6 or 10^7 random number samples.
period of rand.cshowed it on the first page. Poor implementations and picking 10^6 numbers out of a range guaranteed to be only at least 32767 would not really be my first choice. What happened to these Mersenne-Twister implementations? Wasn't it a good compromise between speed and a long period? – Dilettant Jul 28 '11 at 17:32