Skip to content

Commit 313971a

Browse files
bashtageSheppard, Kevin
authored andcommitted
Merge pull request #38 from bashtage/numpy-sync
SYNC: Sync with upstream NumPy
2 parents 681d837 + 3f11455 commit 313971a

File tree

8 files changed

+916
-304
lines changed

8 files changed

+916
-304
lines changed

randomstate/interface/pcg-32/pcg-32.pxi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ in parallel applications is not recommended.
105105
**State and Seeding**
106106
107107
The ``pcg32.RandomState`` state vector consists of 2 unsigned 64 bit values.
108-
``pcg32.RandomState` is seeded using a single 64-bit unsigned integer.
108+
``pcg32.RandomState`` is seeded using a single 64-bit unsigned integer.
109109
In addition, a second 64-bit unsigned integer is used to set the stream.
110110
111111
References

randomstate/interface/pcg-64/pcg-64-docstring.pxi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ produce non-overlapping sequences.
6666
6767
The ``pcg64.RandomState`` state vector consists of 2 unsigned 128 bit values,
6868
which are represented externally as python longs (2.x) or ints (Python 3+).
69-
``pcg64.RandomState` is seeded using a single 128-bit unsigned integer
69+
``pcg64.RandomState`` is seeded using a single 128-bit unsigned integer
7070
(Python long/int). In addition, a second 128-bit unsigned integer is used
7171
to set the stream.
7272

randomstate/interface/random-kit/random-kit.pxi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
DEF RS_RNG_NAME = 'mt19937'
2-
DEF RS_NORMAL_METHOD = 'inv'
2+
DEF RS_NORMAL_METHOD = 'bm'
33
DEF RK_STATE_LEN = 624
44
DEF RS_SEED_NBYTES = 1
55

0 commit comments

Comments
 (0)