module documentation

Undocumented

Variable BitGenerators Undocumented
Function __bit_generator_ctor Pickling helper function that returns a bit generator object
Function __generator_ctor Pickling helper function that returns a Generator object
Function __randomstate_ctor Pickling helper function that returns a legacy RandomState-like object
BitGenerators = (source)

Undocumented

def __bit_generator_ctor(bit_generator_name='MT19937'): (source)

Pickling helper function that returns a bit generator object

Parameters
bit_generator_name:strString containing the name of the BitGenerator
Returns
BitGeneratorbit_generator - BitGenerator instance
def __generator_ctor(bit_generator_name='MT19937', bit_generator_ctor=__bit_generator_ctor): (source)

Pickling helper function that returns a Generator object

Parameters
bit_generator_name:strString containing the core BitGenerator's name
bit_generator_ctor:callable, optionalCallable function that takes bit_generator_name as its only argument and returns an instantized bit generator.
Returns
Generatorrg - Generator using the named core BitGenerator
def __randomstate_ctor(bit_generator_name='MT19937', bit_generator_ctor=__bit_generator_ctor): (source)

Pickling helper function that returns a legacy RandomState-like object

Parameters
bit_generator_name:strString containing the core BitGenerator's name
bit_generator_ctor:callable, optionalCallable function that takes bit_generator_name as its only argument and returns an instantized bit generator.
Returns
RandomStaters - Legacy RandomState using the named core BitGenerator