RandomParkMiller.st
changeset 4592 1f7298074f35
parent 3420 f9d2226dbde2
child 5252 6248614509e9
equal deleted inserted replaced
4591:2449ca90c3a9 4592:1f7298074f35
     1 "{ Package: 'stx:libbasic2' }"
     1 "{ Package: 'stx:libbasic2' }"
       
     2 
       
     3 "{ NameSpace: Smalltalk }"
     2 
     4 
     3 Object subclass:#RandomParkMiller
     5 Object subclass:#RandomParkMiller
     4 	instanceVariableNames:'seed'
     6 	instanceVariableNames:'seed'
     5 	classVariableNames:'PMa PMm PMmu1 PMq PMr'
     7 	classVariableNames:'PMa PMm PMmu1 PMq PMr'
     6 	poolDictionaries:''
     8 	poolDictionaries:''
     7 	category:'Magnitude-Numbers'
     9 	category:'Magnitude-Numbers-Random'
     8 !
    10 !
     9 
    11 
    10 !RandomParkMiller class methodsFor:'documentation'!
    12 !RandomParkMiller class methodsFor:'documentation'!
    11 
    13 
    12 documentation
    14 documentation
   139 ! !
   141 ! !
   140 
   142 
   141 !RandomParkMiller class methodsFor:'documentation'!
   143 !RandomParkMiller class methodsFor:'documentation'!
   142 
   144 
   143 version
   145 version
   144     ^ '$Header: /cvs/stx/stx/libbasic2/RandomParkMiller.st,v 1.11 2014-10-02 16:23:25 cg Exp $'
   146     ^ '$Header$'
   145 !
   147 !
   146 
   148 
   147 version_CVS
   149 version_CVS
   148     ^ '$Header: /cvs/stx/stx/libbasic2/RandomParkMiller.st,v 1.11 2014-10-02 16:23:25 cg Exp $'
   150     ^ '$Header$'
   149 ! !
   151 ! !
   150 
   152 
   151 
   153 
   152 RandomParkMiller initialize!
   154 RandomParkMiller initialize!