File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -31,10 +31,14 @@ generators, 'in addition' to the standard PRNG in NumPy. The included PRNGs are
31
31
sequence identical to MT19937. See the `dSFMT authors' page `_.
32
32
* XorShit128+ and XorShift1024* - Vast fast generators based on the XSadd
33
33
generator. These generators can be rapidly 'jumped' and so can be used in
34
- parallel applications. See the `xorshift authors' page `_.
34
+ parallel applications. See the documentation for
35
+ :meth: `randomstate.prng.xorshift1024.jump ` for details. More information
36
+ about these PRNGs is available at the `xorshift authors' page `_.
35
37
* PCG-32 and PCG-64 - Fast generators that support many parallel streams and
36
- can be advanced by an arbitrary amount. PCG-32 only as a period of :math: `2 ^{64 }`
37
- while PCG-64 has a period of :math: `2 ^{128 }`. See the `PCG author's page `_.
38
+ can be advanced by an arbitrary amount. See the documentation for
39
+ :meth: `randomstate.prng.pcg64.advance `. PCG-32 only as a period of
40
+ :math: `2 ^{64 }` while PCG-64 has a period of :math: `2 ^{128 }`. See the
41
+ `PCG author's page `_ for more details about this class of PRNG.
38
42
* Multiplicative Lagged Fibbonacci Generator MLFG(1279, 861, \* ) - A directly
39
43
implemented multiplicative lagged fibbonacci generator with a very large
40
44
period and good performance. Future plans include multiple stream support.
You can’t perform that action at this time.
0 commit comments