Random.st
changeset 947 23faa406af1f
parent 928 86c222baa183
child 973 ec6bced2d1f5
--- a/Random.st	Wed Dec 20 19:46:42 2000 +0100
+++ b/Random.st	Wed Dec 20 19:46:53 2000 +0100
@@ -66,6 +66,7 @@
 documentation
 "
     random numbers - thanks to Steves GNU Smalltalk
+
     This implements a linear congruential maximum period random number generator
     which passes the spectral test for randomness for dimensions 2 3 4 5 6.
 
@@ -85,6 +86,9 @@
     [author:]
         Steve Byrne
         Claus Gittinger
+
+    [see also:]
+        RandomTT800 - a new random generator
 "
 !
 
@@ -537,5 +541,5 @@
 !Random class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/Random.st,v 1.26 2000-12-01 11:28:49 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/Random.st,v 1.27 2000-12-20 18:46:53 cg Exp $'
 ! !