diff options
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(): |