Skip to content

Commit 7846ac9

Browse files
committed
DOC: Small doc changes
1 parent 664ff27 commit 7846ac9

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

doc/source/index.rst

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,14 @@ generators, 'in addition' to the standard PRNG in NumPy. The included PRNGs are
3131
sequence identical to MT19937. See the `dSFMT authors' page`_.
3232
* XorShit128+ and XorShift1024* - Vast fast generators based on the XSadd
3333
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`_.
3537
* 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.
3842
* Multiplicative Lagged Fibbonacci Generator MLFG(1279, 861, \*) - A directly
3943
implemented multiplicative lagged fibbonacci generator with a very large
4044
period and good performance. Future plans include multiple stream support.

0 commit comments

Comments
 (0)