Random Numbers Fall Mainly in the Planes (1968)
ncbi.nlm.nih.gov
Random Numbers Fall Mainly in the Planes (1968)
1–6 of 6 posts
Re: Random Numbers Fall Mainly in the Planes (1968)
#2Re: Random Numbers Fall Mainly in the Planes (1968)
#3Re: Random Numbers Fall Mainly in the Planes (1968)
#4This describes the issue with PRNGs based on a Linear Congruential Generator. The issues are resolved by using a Mersenne Twister instead, which is the standard PRNG used today basically everywhere.
The xorshiro generators are much better.
Re: Random Numbers Fall Mainly in the Planes (1968)
#5This describes the issue with PRNGs based on a Linear Congruential Generator. The issues are resolved by using a Mersenne Twister instead, which is the standard PRNG used today basically everywhere.
Re: Random Numbers Fall Mainly in the Planes (1968)
#6This describes the issue with PRNGs based on a Linear Congruential Generator. The issues are resolved by using a Mersenne Twister instead, which is the standard PRNG used today basically everywhere.
A generator that itself is not recommended as it’s both very slow and fails many tests. The xorshiro generators are much better.