summaryrefslogtreecommitdiffstats
path: root/Lib/random.py
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2010-09-08 00:30:28 (GMT)
committerRaymond Hettinger <python@rcn.com>2010-09-08 00:30:28 (GMT)
commite4a3e99973caf06c582f98defd24dfb1dd943707 (patch)
tree68db02720354e2797e7c2178b413a5c793b768e8 /Lib/random.py
parent51e01a6f7a59e06b89b860d71c821569910ef894 (diff)
downloadcpython-e4a3e99973caf06c582f98defd24dfb1dd943707.zip
cpython-e4a3e99973caf06c582f98defd24dfb1dd943707.tar.gz
cpython-e4a3e99973caf06c582f98defd24dfb1dd943707.tar.bz2
In the case where only a user supplied random() method is available,
adopt a strategy that makes the fewest calls to random().
Diffstat (limited to 'Lib/random.py')
-rw-r--r--Lib/random.py24
1 files changed, 12 insertions, 12 deletions
diff --git a/Lib/random.py b/Lib/random.py
index 0aee06e..62f5905 100644
--- a/Lib/random.py
+++ b/Lib/random.py
@@ -212,33 +212,33 @@ class Random(_random.Random):
return self.randrange(a, b+1)
- def _randbelow(self, n, int=int, bpf=BPF, type=type,
+ def _randbelow(self, n, int=int, maxsize=1<<BPF, type=type,
Method=_MethodType, BuiltinMethod=_BuiltinMethodType):
- """Return a random int in the range [0,n). Raises ValueError if n==0.
- """
+ "Return a random int in the range [0,n). Raises ValueError if n==0."
- k = n.bit_length() # don't use (n-1) here because n can be 1
getrandbits = self.getrandbits
# Only call self.getrandbits if the original random() builtin method
# has not been overridden or if a new getrandbits() was supplied.
if type(self.random) is BuiltinMethod or type(getrandbits) is Method:
+ k = n.bit_length() # don't use (n-1) here because n can be 1
r = getrandbits(k) # 0 <= r < 2**k
while r >= n:
r = getrandbits(k)
return r
# There's an overriden random() method but no new getrandbits() method,
# so we can only use random() from here.
- if k > bpf:
+ random = self.random
+ if n >= maxsize:
_warn("Underlying random() generator does not supply \n"
"enough bits to choose from a population range this large.\n"
"To remove the range limitation, add a getrandbits() method.")
- return int(self.random() * n)
- random = self.random
- N = 1 << k
- r = int(N * random()) # 0 <= r < 2**k
- while r >= n:
- r = int(N * random())
- return r
+ return int(random() * n)
+ rem = maxsize % n
+ limit = (maxsize - rem) / maxsize # int(limit * maxsize) % n == 0
+ r = random()
+ while r >= limit:
+ r = random()
+ return int(r*maxsize) % n
## -------------------- sequence methods -------------------