[Python-checkins] r42541 - python/trunk/Doc/lib/librandom.tex

tim.peters python-checkins at python.org
Tue Feb 21 20:19:00 CET 2006


Author: tim.peters
Date: Tue Feb 21 20:19:00 2006
New Revision: 42541

Modified:
   python/trunk/Doc/lib/librandom.tex
Log:
At Brian Wichmann's request, added words warning against
using the old Wichmann-Hill generator,  Also pointed to
a newer version of his generator, and weakened the claim
about what jumpahead() does now.

Note sure I got the LaTeX entirely correct for \seeurl.
If it's broken, please fix it ;-)

Bugfix candidate!  (These changes make just as much
sense for 2.4.)


Modified: python/trunk/Doc/lib/librandom.tex
==============================================================================
--- python/trunk/Doc/lib/librandom.tex	(original)
+++ python/trunk/Doc/lib/librandom.tex	Tue Feb 21 20:19:00 2006
@@ -34,7 +34,7 @@
 instantiate your own instances of \class{Random} to get generators
 that don't share state.  This is especially useful for multi-threaded
 programs, creating a different instance of \class{Random} for each
-thread, and using the \method{jumpahead()} method to ensure that the
+thread, and using the \method{jumpahead()} method to make it likely that the
 generated sequences seen by each thread don't overlap.
 
 Class \class{Random} can also be subclassed if you want to use a
@@ -47,10 +47,14 @@
 \versionadded[the \method{getrandombits()} method]{2.4}
 
 As an example of subclassing, the \module{random} module provides
-the \class{WichmannHill} class which implements an alternative generator
+the \class{WichmannHill} class that implements an alternative generator
 in pure Python.  The class provides a backward compatible way to
-reproduce results from earlier versions of Python which used the
-Wichmann-Hill algorithm as the core generator.
+reproduce results from earlier versions of Python, which used the
+Wichmann-Hill algorithm as the core generator.  Note that this Wichmann-Hill
+generator can no longer be recommended:  its period is too short by
+contemporary standards, and the sequence generated is known to fail some
+stringent randomness tests.  See the references below for a recent
+variant that repairs these flaws.
 \versionchanged[Substituted MersenneTwister for Wichmann-Hill]{2.3}
 
 
@@ -273,4 +277,9 @@
   \seetext{Wichmann, B. A. \& Hill, I. D., ``Algorithm AS 183:
            An efficient and portable pseudo-random number generator'',
            \citetitle{Applied Statistics} 31 (1982) 188-190.}
+
+  \seeurl{http://www.npl.co.uk/ssfm/download/abstracts.html#196}{A modern
+          variation of the Wichmann-Hill generator that greatly increases
+          the period, and passes now-standard statistical tests that the
+          original generator failed.}
 \end{seealso}


More information about the Python-checkins mailing list