/opt/cloudlinux/venv/lib/python3.11/site-packages/numpy/random
from .mtrand import RandomState from ._philox import Philox from ._pcg64 import PCG64, PCG64DXSM from ._sfc64 import SFC64 from ._generator import Generator from ._mt19937 import MT19937 BitGenerators = {'MT19937': MT19937, 'PCG64': PCG64, 'PCG64DXSM': PCG64DXSM, 'Philox': Philox, 'SFC64': SFC64, } def __bit_generator_ctor(bit_generator_name='MT19937'): """ Pickling helper function that returns a bit generator object Parameters ---------- bit_generator_name : str String containing the name of the BitGenerator Returns ------- bit_generator : BitGenerator BitGenerator instance """ if bit_generator_name in BitGenerators: bit_generator = BitGenerators[bit_generator_name] else: raise ValueError(str(bit_generator_name) + ' is not a known ' 'BitGenerator module.') return bit_generator() def __generator_ctor(bit_generator_name="MT19937", bit_generator_ctor=__bit_generator_ctor): """ Pickling helper function that returns a Generator object Parameters ---------- bit_generator_name : str String containing the core BitGenerator's name bit_generator_ctor : callable, optional Callable function that takes bit_generator_name as its only argument and returns an instantized bit generator. Returns ------- rg : Generator Generator using the named core BitGenerator """ return Generator(bit_generator_ctor(bit_generator_name)) def __randomstate_ctor(bit_generator_name="MT19937", bit_generator_ctor=__bit_generator_ctor): """ Pickling helper function that returns a legacy RandomState-like object Parameters ---------- bit_generator_name : str String containing the core BitGenerator's name bit_generator_ctor : callable, optional Callable function that takes bit_generator_name as its only argument and returns an instantized bit generator. Returns ------- rs : RandomState Legacy RandomState using the named core BitGenerator """ return RandomState(bit_generator_ctor(bit_generator_name))
.
Edit
..
Edit
__init__.pxd
Edit
__init__.py
Edit
__init__.pyi
Edit
__pycache__
Edit
_bounded_integers.cpython-311-x86_64-linux-gnu.so
Edit
_bounded_integers.pxd
Edit
_common.cpython-311-x86_64-linux-gnu.so
Edit
_common.pxd
Edit
_examples
Edit
_generator.cpython-311-x86_64-linux-gnu.so
Edit
_generator.pyi
Edit
_mt19937.cpython-311-x86_64-linux-gnu.so
Edit
_mt19937.pyi
Edit
_pcg64.cpython-311-x86_64-linux-gnu.so
Edit
_pcg64.pyi
Edit
_philox.cpython-311-x86_64-linux-gnu.so
Edit
_philox.pyi
Edit
_pickle.py
Edit
_sfc64.cpython-311-x86_64-linux-gnu.so
Edit
_sfc64.pyi
Edit
bit_generator.cpython-311-x86_64-linux-gnu.so
Edit
bit_generator.pxd
Edit
bit_generator.pyi
Edit
c_distributions.pxd
Edit
lib
Edit
mtrand.cpython-311-x86_64-linux-gnu.so
Edit
mtrand.pyi
Edit
setup.py
Edit
tests
Edit