module documentation

Undocumented

Variable ​Bit​Generators 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 =

Undocumented

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
def __generator_ctor(bit_generator_name='MT19937'):

Pickling helper function that returns a Generator object

Parameters

bit_generator_name : str
String containing the core BitGenerator

Returns

rg: Generator
Generator using the named core BitGenerator
def __randomstate_ctor(bit_generator_name='MT19937'):

Pickling helper function that returns a legacy RandomState-like object

Parameters

bit_generator_name : str
String containing the core BitGenerator

Returns

rs: RandomState
Legacy RandomState using the named core BitGenerator