bpo-41421: Algebraic simplification for random.paretovariate() (GH-21695)
This commit is contained in:
committed by
GitHub
parent
cadda52d97
commit
5c3270939c
@@ -749,7 +749,7 @@ class Random(_random.Random):
|
||||
# Jain, pg. 495
|
||||
|
||||
u = 1.0 - self.random()
|
||||
return 1.0 / u ** (1.0 / alpha)
|
||||
return u ** (-1.0 / alpha)
|
||||
|
||||
def weibullvariate(self, alpha, beta):
|
||||
"""Weibull distribution.
|
||||
|
||||
Reference in New Issue
Block a user