Skip to content

Commit a765a98

Browse files
committed
CLN: Remove random_uintegers
Remove random_uintegers since it is redundant due to changes in randint
1 parent 534580f commit a765a98

15 files changed

+11
-127
lines changed

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.

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

doc/source/xoroshiro128plus.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/xorshift1024.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)