summaryrefslogtreecommitdiff
path: root/numpy/random/__init__.py
diff options
context:
space:
mode:
authorKevin Sheppard <kevin.k.sheppard@gmail.com>2019-05-24 10:41:58 +0100
committermattip <matti.picus@gmail.com>2019-05-27 22:58:35 +0300
commit58c0e72854c3f79d3d165d74f2dc721815a38b57 (patch)
tree3a8fff1f2c1a073248c81e53ba8d3a0367c00907 /numpy/random/__init__.py
parent3db5a7736cf26db59817eb8939b042ae18c482fa (diff)
downloadnumpy-58c0e72854c3f79d3d165d74f2dc721815a38b57.tar.gz
Revert "MAINT: Implement API changes for randomgen-derived code"
This reverts commit 17e0070df93f4262908f884dca4b08cb7d0bba7f.
Diffstat (limited to 'numpy/random/__init__.py')
-rw-r--r--numpy/random/__init__.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/numpy/random/__init__.py b/numpy/random/__init__.py
index 51a2952f1..ade912839 100644
--- a/numpy/random/__init__.py
+++ b/numpy/random/__init__.py
@@ -99,6 +99,8 @@ BitGenerator Streams that work with Generator
--------------------------------------------- ---
MT19937
DSFMT
+PCG32
+PCG64
Philox
ThreeFry
Xoshiro256
@@ -163,13 +165,15 @@ from .mtrand import *
from .dsfmt import DSFMT
from .generator import Generator
from .mt19937 import MT19937
+from .pcg32 import PCG32
+from .pcg64 import PCG64
from .philox import Philox
from .threefry import ThreeFry
from .xoshiro256 import Xoshiro256
from .xoshiro512 import Xoshiro512
from .mtrand import RandomState
-__all__ += ['Generator', 'DSFMT', 'MT19937', 'Philox',
+__all__ += ['Generator', 'DSFMT', 'MT19937', 'Philox','PCG64', 'PCG32',
'ThreeFry', 'Xoshiro256', 'Xoshiro512', 'RandomState']
# Some aliases: