diff options
author | Robert Kern <robert.kern@gmail.com> | 2019-06-25 20:52:03 -0700 |
---|---|---|
committer | Robert Kern <robert.kern@gmail.com> | 2019-06-25 20:52:03 -0700 |
commit | 45473e3e7d661ebdfa97afa757b9cbba103a155e (patch) | |
tree | b29f146b9c04fb8c61ceeea4494ba5346fd8bc45 /numpy/random/__init__.py | |
parent | 4668b46310e74b2f3c78eb213b6d796456278942 (diff) | |
download | numpy-45473e3e7d661ebdfa97afa757b9cbba103a155e.tar.gz |
ENH: Add SFC64 BitGenerator.
Diffstat (limited to 'numpy/random/__init__.py')
-rw-r--r-- | numpy/random/__init__.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/numpy/random/__init__.py b/numpy/random/__init__.py index 0e7c4e7b2..6543161f2 100644 --- a/numpy/random/__init__.py +++ b/numpy/random/__init__.py @@ -100,6 +100,7 @@ BitGenerator Streams that work with Generator MT19937 PCG64 Philox +SFC64 ============================================= === ============================================= === @@ -171,10 +172,11 @@ from .bit_generator import SeedSequence from .mt19937 import MT19937 from .pcg64 import PCG64 from .philox import Philox +from .sfc64 import SFC64 from .mtrand import RandomState __all__ += ['Generator', 'RandomState', 'SeedSequence', 'MT19937', - 'Philox', 'PCG64'] + 'Philox', 'PCG64', 'SFC64'] def __RandomState_ctor(): |