INTERFACERandomSubtractiveFibo1 ;
Arithmetic for Modula-3, see doc for detailsAbstract: Collection of random number generators
Each returns numbers in range: RandomBasic.Min..RandomBasic.Max which is 0..1, but not including the endpoints.
3/16/96 Harry George Initial version
IMPORT RandomBasic; TYPE T <: TPublic; TPublic = RandomBasic.TReal OBJECT METHODS init (initrng: RandomBasic.T; ): T; END; END RandomSubtractiveFibo1.