Random number generator tested:

coveyou
Minimum value: 0
Maximum value: 4294967295
Family: Quadratic Congruential
generator
Random number generator algorithms:
This is the Coveyou random number generator. It is taken from Knuth's Seminumerical Algorithms, 3rd Ed., Section 3.2.2.
Its sequence is, xn+1 = (xn (xn + 1)) mod m with m = 232. The seed specifies the initial value, x1.