Skip to content

Commit a513223

Browse files
authored
Merge pull request #58 from bashtage/remove-random-uinteger
CLN: Remove random uinteger
2 parents 534580f + a55fa1c commit a513223

17 files changed

+100
-141
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,4 @@ install:
5353
script:
5454
- nosetests randomstate
5555
- cd $BUILD_DIR/randomstate
56-
- if [ ${PYTHON} = "2.7" ]; then python performance.py; fi
56+
- if [ ${PYTHON} = "3.5" ]; then python performance.py; fi

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,6 @@ argument `dtype`.
8282

8383
* `random_entropy` - Read from the system entropy provider, which is
8484
commonly used in cryptographic applications
85-
* `random_uintegers` - unsigned integers `[0, 2**64-1]`
8685
* `random_raw` - Direct access to the values produced by the underlying
8786
PRNG. The range of the values returned depends on the specifics of the
8887
PRNG implementation.

README.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,6 @@ New Functions
8888

8989
- ``random_entropy`` - Read from the system entropy provider, which is
9090
commonly used in cryptographic applications
91-
- ``random_uintegers`` - unsigned integers ``[0, 2**64-1]``
9291
- ``random_raw`` - Direct access to the values produced by the
9392
underlying PRNG. The range of the values returned depends on the
9493
specifics of the PRNG implementation.

doc/source/dsfmt.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ Simple random data
3737
sample
3838
choice
3939
bytes
40-
random_uintegers
4140
random_raw
4241

4342
Permutations

doc/source/index.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ that change the core random number generator.
55

66
What's New or Different
77
-----------------------
8-
* ``random_uintegers`` produces either 32-bit or 64-bit unsigned integers.
9-
These are at the core of most PRNGs and so they are directly exposed.
108
* ``randomstate.entropy.random_entropy`` provides access to the system
119
source of randomness that is used in cryptographic applications (e.g.,
1210
``/dev/urandom`` on Unix).

doc/source/mlfg.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ Simple random data
3131
sample
3232
choice
3333
bytes
34-
random_uintegers
3534
random_raw
3635

3736
Permutations

doc/source/mrg32k3a.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ Simple random data
3838
sample
3939
choice
4040
bytes
41-
random_uintegers
4241
random_raw
4342

4443
Permutations

doc/source/mt19937.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ Simple random data
3232
sample
3333
choice
3434
bytes
35-
random_uintegers
3635
random_raw
3736

3837
Permutations

doc/source/pcg32.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ Simple random data
3838
sample
3939
choice
4040
bytes
41-
random_uintegers
4241
random_raw
4342

4443
Permutations

doc/source/pcg64.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ Simple random data
3838
sample
3939
choice
4040
bytes
41-
random_uintegers
4241
random_raw
4342

4443
Permutations

0 commit comments

Comments
 (0)