dlangBugzillaToGithub / migration_test

0 stars 0 forks source link

R250/521 pseudo-random number engine #674

Open dlangBugzillaToGithub opened 13 years ago

dlangBugzillaToGithub commented 13 years ago

bearophile_hugs reported this on 2011-01-31T00:03:54Z

Transfered from https://issues.dlang.org/show_bug.cgi?id=5509

CC List

Description

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.
dlangBugzillaToGithub commented 9 years ago

lt.infiltrator commented on 2015-11-01T10:51:21Z

Are you still interested in adding  this generator?  If so, would you mind putting in a pull request on github?