summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2009-04-01 20:52:52 (GMT)
committerRaymond Hettinger <python@rcn.com>2009-04-01 20:52:52 (GMT)
commitd9f564f60f47edc55a00cf336e623f1c7c981374 (patch)
treefa8b32c40e66712260d49b02aac7bc7a16eee9b0
parent78a50de704cd3eaaf101d8c85edb9c5b7d4ce0dc (diff)
downloadcpython-d9f564f60f47edc55a00cf336e623f1c7c981374.zip
cpython-d9f564f60f47edc55a00cf336e623f1c7c981374.tar.gz
cpython-d9f564f60f47edc55a00cf336e623f1c7c981374.tar.bz2
Add link to an alternative generator with a long-period.
-rw-r--r--Doc/library/random.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/library/random.rst b/Doc/library/random.rst
index 9e55665..e9f4d82 100644
--- a/Doc/library/random.rst
+++ b/Doc/library/random.rst
@@ -325,3 +325,7 @@ Examples of basic usage::
Wichmann, B. A. & Hill, I. D., "Algorithm AS 183: An efficient and portable
pseudo-random number generator", Applied Statistics 31 (1982) 188-190.
+ `Complementary-Multiply-with-Carry recipe
+ <http://code.activestate.com/recipes/576707/>`_ for a compatable alternative
+ random number generator with a long-period and comparatively simple update
+ operations.