Skip to content
Prev 46977 / 63424 Next

Replacing the Random Number Generator in Stand Alone Library

On Oct 16, 2013, at 02:41 , Nigel Delaney wrote:

            
Quite possibly. 

I think the reason you get no reply could be that nobody really knows to what extent the standalone library is being used, and what repercussions an internal change might have. (E.g., if a change in the seed format causes applications to crash and burn, users might not appreciate the improved RNG...)

The RNG issues really are serious, and affect actual applications. This was hashed out about 10 years ago and eventually fixed somewhere around R 1.6--1.7.
Warning message:
In RNGkind("Marsaglia-Multicarry", "Buggy Kinderman-Ramage") :
  buggy version of Kinderman-Ramage generator used
(The bug in the K-R generator isn't relevant here, but the pattern of RNG usage in K-R is what creates the ripple effect in the first plot. Changing _either_ of the two generators removes the effect.)

-pd