Random Number Generating Methods
Last updated
Was this helpful?
Last updated
Was this helpful?
These methods create reproducible sequences of random numbers given an initial seed value.
This methods rely on the project.
Generates random numbers using the Mersenne Twister generator whose values are within the range 0 to 0xffffffff.
Generates random numbers using the Mersenne Twister generator whose values are within the range 0 to 0xffffffff.
Generates random numbers using the xorshift128+ generator whose values are within the range -0x80000000 to 0x7fffffff.
Generates random numbers using the xoroshiro128+ generator whose values are within the range -0x80000000 to 0x7fffffff.
Generates random numbers using a Linear Congruential generator whose values are within the range 0 to 0x7fff.
Generates random numbers using a Linear Congruential generator whose values are within the range 0 to 0xffffffff.