1 # WICHMANN-HILL RANDOM NUMBER GENERATOR
3 # Wichmann, B. A. & Hill, I. D. (1982)
5 # An efficient and portable pseudo-random number generator
6 # Applied Statistics 31 (1982) 188-190
9 # Correction to Algorithm AS 183
10 # Applied Statistics 33 (1984) 123
12 # McLeod, A. I. (1985)
13 # A remark on Algorithm AS 183
14 # Applied Statistics 34 (1985),198-200
18 # whrandom.random() yields double precision random numbers
19 # uniformly distributed between 0 and 1.
21 # whrandom.seed(x, y, z) must be called before whrandom.random()
22 # to seed the generator
24 # There is also an interface to create multiple independent
25 # random generators, and to choose from other ranges.
28 # Translated by Guido van Rossum from C source provided by
34 # Initialize an instance.
35 # Without arguments, initialize from current time.
36 # With arguments (x, y, z), initialize from them.
38 def __init__(self
, x
= 0, y
= 0, z
= 0):
41 # Set the seed from (x, y, z).
42 # These must be integers in the range [0, 256).
44 def seed(self
, x
= 0, y
= 0, z
= 0):
45 if not type(x
) == type(y
) == type(z
) == type(0):
46 raise TypeError, 'seeds must be integers'
47 if not 0 <= x
< 256 and 0 <= y
< 256 and 0 <= z
< 256:
48 raise ValueError, 'seeds must be in range(0, 256)'
50 # Initialize from current time
52 t
= int(time
.time() % 0x80000000)
56 self
._seed
= (x
, y
, z
)
58 # Get the next random number in the range [0.0, 1.0).
63 x1
, x2
= divmod(x
, 177)
64 y1
, y2
= divmod(y
, 176)
65 z1
, z2
= divmod(z
, 178)
67 x
= (171 * x2
- 2 * x1
) % 30269
68 y
= (172 * y2
- 35 * y1
) % 30307
69 z
= (170 * z2
- 63 * z1
) % 30323
73 return (x
/30269.0 + y
/30307.0 + z
/30323.0) % 1.0
75 # Get a random number in the range [a, b).
77 def uniform(self
, a
, b
):
78 return a
+ (b
-a
) * self
.random()
80 # Get a random integer in the range [a, b] including both end points.
82 def randint(self
, a
, b
):
83 return a
+ int(self
.random() * (b
+1-a
))
85 # Choose a random element from a non-empty sequence.
87 def choice(self
, seq
):
88 return seq
[int(self
.random() * len(seq
))]
91 # Initialize from the current time
96 uniform
= _inst
.uniform
97 randint
= _inst
.randint