#OTHER by cg
authorClaus Gittinger <cg@exept.de>
Fri, 02 Mar 2018 14:04:25 +0100
changeset 4592 1f7298074f35
parent 4591 2449ca90c3a9
child 4593 0a3ae2abb281
#OTHER by cg category changes
RandomParkMiller.st
--- a/RandomParkMiller.st	Fri Mar 02 14:04:23 2018 +0100
+++ b/RandomParkMiller.st	Fri Mar 02 14:04:25 2018 +0100
@@ -1,10 +1,12 @@
 "{ Package: 'stx:libbasic2' }"
 
+"{ NameSpace: Smalltalk }"
+
 Object subclass:#RandomParkMiller
 	instanceVariableNames:'seed'
 	classVariableNames:'PMa PMm PMmu1 PMq PMr'
 	poolDictionaries:''
-	category:'Magnitude-Numbers'
+	category:'Magnitude-Numbers-Random'
 !
 
 !RandomParkMiller class methodsFor:'documentation'!
@@ -141,11 +143,11 @@
 !RandomParkMiller class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/RandomParkMiller.st,v 1.11 2014-10-02 16:23:25 cg Exp $'
+    ^ '$Header$'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic2/RandomParkMiller.st,v 1.11 2014-10-02 16:23:25 cg Exp $'
+    ^ '$Header$'
 ! !