2000-02-04 11:28:42 -04:00
|
|
|
"""Wichman-Hill random number generator.
|
1998-05-29 14:51:59 -03:00
|
|
|
|
2000-02-04 11:28:42 -04:00
|
|
|
Wichmann, B. A. & Hill, I. D. (1982)
|
|
|
|
Algorithm AS 183:
|
|
|
|
An efficient and portable pseudo-random number generator
|
|
|
|
Applied Statistics 31 (1982) 188-190
|
|
|
|
|
|
|
|
see also:
|
|
|
|
Correction to Algorithm AS 183
|
|
|
|
Applied Statistics 33 (1984) 123
|
|
|
|
|
|
|
|
McLeod, A. I. (1985)
|
|
|
|
A remark on Algorithm AS 183
|
|
|
|
Applied Statistics 34 (1985),198-200
|
|
|
|
|
|
|
|
|
|
|
|
USE:
|
|
|
|
whrandom.random() yields double precision random numbers
|
|
|
|
uniformly distributed between 0 and 1.
|
|
|
|
|
|
|
|
whrandom.seed(x, y, z) must be called before whrandom.random()
|
|
|
|
to seed the generator
|
|
|
|
|
|
|
|
There is also an interface to create multiple independent
|
|
|
|
random generators, and to choose from other ranges.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Multi-threading note: the random number generator used here is not
|
|
|
|
thread-safe; it is possible that nearly simultaneous calls in
|
|
|
|
different theads return the same random value. To avoid this, you
|
|
|
|
have to use a lock around all calls. (I didn't want to slow this
|
|
|
|
down in the serial case by using a lock here.)
|
|
|
|
"""
|
1998-05-29 14:51:59 -03:00
|
|
|
|
2000-02-28 11:12:25 -04:00
|
|
|
# Translated by Guido van Rossum from C source provided by
|
|
|
|
# Adrian Baddeley.
|
|
|
|
|
|
|
|
|
1992-10-18 14:09:59 -03:00
|
|
|
class whrandom:
|
1994-09-14 10:33:57 -03:00
|
|
|
def __init__(self, x = 0, y = 0, z = 0):
|
2000-02-04 11:28:42 -04:00
|
|
|
"""Initialize an instance.
|
|
|
|
Without arguments, initialize from current time.
|
|
|
|
With arguments (x, y, z), initialize from them."""
|
1992-10-18 14:09:59 -03:00
|
|
|
self.seed(x, y, z)
|
2000-02-04 11:28:42 -04:00
|
|
|
|
1994-09-14 10:33:57 -03:00
|
|
|
def seed(self, x = 0, y = 0, z = 0):
|
2000-02-04 11:28:42 -04:00
|
|
|
"""Set the seed from (x, y, z).
|
|
|
|
These must be integers in the range [0, 256)."""
|
1992-10-18 14:09:59 -03:00
|
|
|
if not type(x) == type(y) == type(z) == type(0):
|
|
|
|
raise TypeError, 'seeds must be integers'
|
1997-01-02 14:13:35 -04:00
|
|
|
if not (0 <= x < 256 and 0 <= y < 256 and 0 <= z < 256):
|
1992-10-18 14:09:59 -03:00
|
|
|
raise ValueError, 'seeds must be in range(0, 256)'
|
1994-09-14 10:33:57 -03:00
|
|
|
if 0 == x == y == z:
|
|
|
|
# Initialize from current time
|
|
|
|
import time
|
1996-10-21 20:20:03 -03:00
|
|
|
t = long(time.time() * 256)
|
1998-02-16 10:52:42 -04:00
|
|
|
t = int((t&0xffffff) ^ (t>>24))
|
1994-09-14 10:33:57 -03:00
|
|
|
t, x = divmod(t, 256)
|
|
|
|
t, y = divmod(t, 256)
|
|
|
|
t, z = divmod(t, 256)
|
1997-07-10 12:14:50 -03:00
|
|
|
# Zero is a poor seed, so substitute 1
|
|
|
|
self._seed = (x or 1, y or 1, z or 1)
|
2000-02-04 11:28:42 -04:00
|
|
|
|
1992-10-18 14:09:59 -03:00
|
|
|
def random(self):
|
2000-02-04 11:28:42 -04:00
|
|
|
"""Get the next random number in the range [0.0, 1.0)."""
|
1998-05-29 14:51:59 -03:00
|
|
|
# This part is thread-unsafe:
|
|
|
|
# BEGIN CRITICAL SECTION
|
1992-10-18 14:09:59 -03:00
|
|
|
x, y, z = self._seed
|
|
|
|
#
|
1997-07-10 12:14:50 -03:00
|
|
|
x = (171 * x) % 30269
|
|
|
|
y = (172 * y) % 30307
|
|
|
|
z = (170 * z) % 30323
|
1992-10-18 14:09:59 -03:00
|
|
|
#
|
|
|
|
self._seed = x, y, z
|
1998-05-29 14:51:59 -03:00
|
|
|
# END CRITICAL SECTION
|
1992-10-18 14:09:59 -03:00
|
|
|
#
|
|
|
|
return (x/30269.0 + y/30307.0 + z/30323.0) % 1.0
|
2000-02-04 11:28:42 -04:00
|
|
|
|
1992-10-18 14:09:59 -03:00
|
|
|
def uniform(self, a, b):
|
2000-02-04 11:28:42 -04:00
|
|
|
"""Get a random number in the range [a, b)."""
|
1992-10-18 14:09:59 -03:00
|
|
|
return a + (b-a) * self.random()
|
2000-02-04 11:28:42 -04:00
|
|
|
|
1992-10-18 14:09:59 -03:00
|
|
|
def randint(self, a, b):
|
2000-06-30 16:33:35 -03:00
|
|
|
"""Get a random integer in the range [a, b] including
|
|
|
|
both end points.
|
|
|
|
|
2000-02-04 11:28:42 -04:00
|
|
|
(Deprecated; use randrange below.)"""
|
1998-07-31 10:39:44 -03:00
|
|
|
return self.randrange(a, b+1)
|
2000-02-04 11:28:42 -04:00
|
|
|
|
1992-10-18 14:09:59 -03:00
|
|
|
def choice(self, seq):
|
2000-02-04 11:28:42 -04:00
|
|
|
"""Choose a random element from a non-empty sequence."""
|
1992-10-18 14:09:59 -03:00
|
|
|
return seq[int(self.random() * len(seq))]
|
2000-02-04 11:28:42 -04:00
|
|
|
|
|
|
|
def randrange(self, start, stop=None, step=1, int=int, default=None):
|
2000-06-30 16:33:35 -03:00
|
|
|
"""Choose a random item from range(start, stop[, step]).
|
|
|
|
|
2000-02-04 11:28:42 -04:00
|
|
|
This fixes the problem with randint() which includes the
|
|
|
|
endpoint; in Python this is usually not what you want.
|
2000-06-30 16:33:35 -03:00
|
|
|
Do not supply the 'int' and 'default' arguments."""
|
1998-07-31 10:39:44 -03:00
|
|
|
# This code is a bit messy to make it fast for the
|
|
|
|
# common case while still doing adequate error checking
|
|
|
|
istart = int(start)
|
|
|
|
if istart != start:
|
|
|
|
raise ValueError, "non-integer arg 1 for randrange()"
|
|
|
|
if stop is default:
|
|
|
|
if istart > 0:
|
|
|
|
return int(self.random() * istart)
|
|
|
|
raise ValueError, "empty range for randrange()"
|
|
|
|
istop = int(stop)
|
|
|
|
if istop != stop:
|
|
|
|
raise ValueError, "non-integer stop for randrange()"
|
|
|
|
if step == 1:
|
|
|
|
if istart < istop:
|
|
|
|
return istart + int(self.random() *
|
|
|
|
(istop - istart))
|
|
|
|
raise ValueError, "empty range for randrange()"
|
|
|
|
istep = int(step)
|
|
|
|
if istep != step:
|
|
|
|
raise ValueError, "non-integer step for randrange()"
|
|
|
|
if istep > 0:
|
|
|
|
n = (istop - istart + istep - 1) / istep
|
|
|
|
elif istep < 0:
|
|
|
|
n = (istop - istart + istep + 1) / istep
|
1998-08-10 17:07:53 -03:00
|
|
|
else:
|
|
|
|
raise ValueError, "zero step for randrange()"
|
1998-07-31 10:39:44 -03:00
|
|
|
|
1998-08-10 17:07:53 -03:00
|
|
|
if n <= 0:
|
|
|
|
raise ValueError, "empty range for randrange()"
|
|
|
|
return istart + istep*int(self.random() * n)
|
1990-10-13 16:23:40 -03:00
|
|
|
|
|
|
|
|
|
|
|
# Initialize from the current time
|
1993-12-17 11:25:27 -04:00
|
|
|
_inst = whrandom()
|
1992-10-18 14:09:59 -03:00
|
|
|
seed = _inst.seed
|
|
|
|
random = _inst.random
|
|
|
|
uniform = _inst.uniform
|
|
|
|
randint = _inst.randint
|
|
|
|
choice = _inst.choice
|
1998-07-31 10:39:44 -03:00
|
|
|
randrange = _inst.randrange
|