Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
9aaeb5e0
Commit
9aaeb5e0
authored
Feb 10, 2013
by
Mark Dickinson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #17149: Fix random.vonmisesvariate to always return results in [0, 2*math.pi].
parent
f898038c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
2 deletions
+19
-2
Lib/random.py
Lib/random.py
+2
-2
Lib/test/test_random.py
Lib/test/test_random.py
+14
-0
Misc/NEWS
Misc/NEWS
+3
-0
No files found.
Lib/random.py
View file @
9aaeb5e0
...
@@ -475,9 +475,9 @@ class Random(_random.Random):
...
@@ -475,9 +475,9 @@ class Random(_random.Random):
u3
=
random
()
u3
=
random
()
if
u3
>
0.5
:
if
u3
>
0.5
:
theta
=
(
mu
%
TWOPI
)
+
_acos
(
f
)
theta
=
(
mu
+
_acos
(
f
))
%
TWOPI
else
:
else
:
theta
=
(
mu
%
TWOPI
)
-
_acos
(
f
)
theta
=
(
mu
-
_acos
(
f
))
%
TWOPI
return
theta
return
theta
...
...
Lib/test/test_random.py
View file @
9aaeb5e0
...
@@ -533,6 +533,20 @@ class TestDistributions(unittest.TestCase):
...
@@ -533,6 +533,20 @@ class TestDistributions(unittest.TestCase):
self
.
assertAlmostEqual
(
s1
/
N
,
mu
,
2
)
self
.
assertAlmostEqual
(
s1
/
N
,
mu
,
2
)
self
.
assertAlmostEqual
(
s2
/
(
N
-
1
),
sigmasqrd
,
2
)
self
.
assertAlmostEqual
(
s2
/
(
N
-
1
),
sigmasqrd
,
2
)
def
test_von_mises_range
(
self
):
# Issue 17149: von mises variates were not consistently in the
# range [0, 2*PI].
g
=
random
.
Random
()
N
=
100
for
mu
in
0.0
,
0.1
,
3.1
,
6.2
:
for
kappa
in
0.0
,
2.3
,
500.0
:
for
_
in
range
(
N
):
sample
=
g
.
vonmisesvariate
(
mu
,
kappa
)
self
.
assertTrue
(
0
<=
sample
<=
random
.
TWOPI
,
msg
=
(
"vonmisesvariate({}, {}) produced a result {} out"
" of range [0, 2*pi]"
).
format
(
mu
,
kappa
,
sample
))
class
TestModule
(
unittest
.
TestCase
):
class
TestModule
(
unittest
.
TestCase
):
def
testMagicConstants
(
self
):
def
testMagicConstants
(
self
):
self
.
assertAlmostEqual
(
random
.
NV_MAGICCONST
,
1.71552776992141
)
self
.
assertAlmostEqual
(
random
.
NV_MAGICCONST
,
1.71552776992141
)
...
...
Misc/NEWS
View file @
9aaeb5e0
...
@@ -202,6 +202,9 @@ Core and Builtins
...
@@ -202,6 +202,9 @@ Core and Builtins
Library
Library
-------
-------
- Issue #17149: Fix random.vonmisesvariate to always return results in
the range [0, 2*math.pi].
- Issue #1470548: XMLGenerator now works with UTF-16 and UTF-32 encodings.
- Issue #1470548: XMLGenerator now works with UTF-16 and UTF-32 encodings.
- Issue #6975: os.path.realpath() now correctly resolves multiple nested
- Issue #6975: os.path.realpath() now correctly resolves multiple nested
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment