INTERFACE RNRep; (* Definition and basic properties of the type "RN.T" *) IMPORT RealExtraExtras, RandomReal, GaussRandom; TYPE T = ARRAY OF REAL; TYPE ElemT = REAL; CONST DefaultElemFmt = RealExtraExtras.ToText; CONST URandomCoord = RandomReal.Real; CONST NRandomCoord = GaussRandom.Real; END RNRep.