Copyright (C) 1994, Digital Equipment Corp. INTERFACERandomReal ; IMPORT Random;
Machine specific algorithms for generating random floating-point values.
PROCEDURE Real (r: Random.T): REAL; PROCEDURE Longreal (r: Random.T): LONGREAL; PROCEDURE Extended (r: Random.T): EXTENDED;
Each of the procedures above constructs and returns a random
floating-point value uniformly distributed in [0..1.0) using
only the integer
method of the passed random number generator.
END RandomReal.