Random number generator tested:

borosh13
Minimum value: 0
Maximum value: 4294967295
Family: Linear Congruential
generator
Random number generator algorithms:
This is the Borosh, Niederreiter random number generator. It is taken from Knuth's Seminumerical Algorithms, 3rd Ed., pages 106-108. Its sequence is, xn+1 = (a xn) mod m with a = 1812433253 and m = 232. The seed specifies the initial value, x1.