Random number generator tested:

waterman14
Minimum value: 0
Maximum value: 4294967295
Family: Linear Congruential
generator
Random number generator algorithms:
This is the Waterman random number generator. Its sequence is, xn+1 = (a xn + c) mod m
with a = 1566083941, c = 0 and m = 232. The seed specifies the initial value, x1.

Donald E. Knuth, " The Art of Computer Programming," Volume2 Third Edition, Addison-Wesley, page 106-108.