Beside the current ones, I'd like another pseudo-random number generator to be present in the std.random module, the R250/521:
http://en.literateprograms.org/R250/521_%28C%29
http://en.literateprograms.org/Special:Downloadcode/R250/521_%28C%29
The implementation is easy, the quality of the generated numbers is not bad (worse than Mersenne Twister but better than congruential generators), and the performance is very good (among the best, in my tests). So it has a high performance for its quality level. I suggest to use the Mersenne Twister to initialize its r250_buffer and r521_buffer arrays. I have a D translation, if you want.
bearophile_hugs reported this on 2011-01-31T00:03:54Z
Transfered from https://issues.dlang.org/show_bug.cgi?id=5509
CC List
Description