package np

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type tag = [
  1. | `MT19937
]
type t = [ `MT19937 | `Object ] Obj.t
val of_pyobject : Py.Object.t -> t
val to_pyobject : [> tag ] Obj.t -> Py.Object.t
val create : ?seed:[ `I of int | `PyObject of Py.Object.t ] -> unit -> t

MT19937(seed=None)

Container for the Mersenne Twister pseudo-random number generator.

Parameters ---------- seed : None, int, array_like[ints], SeedSequence, optional A seed to initialize the `BitGenerator`. If None, then fresh, unpredictable entropy will be pulled from the OS. If an ``int`` or ``array_likeints`` is passed, then it will be passed to `SeedSequence` to derive the initial `BitGenerator` state. One may also pass in a `SeedSequence` instance.

Attributes ---------- lock: threading.Lock Lock instance that is shared so that the same bit git generator can be used in multiple Generators without corrupting the state. Code that generates values from a bit generator should hold the bit generator's lock.

Notes ----- ``MT19937`` provides a capsule containing function pointers that produce doubles, and unsigned 32 and 64- bit integers 1_. These are not directly consumable in Python and must be consumed by a ``Generator`` or similar object that supports low-level access.

The Python stdlib module 'random' also contains a Mersenne Twister pseudo-random number generator.

**State and Seeding**

The ``MT19937`` state vector consists of a 624-element array of 32-bit unsigned integers plus a single integer value between 0 and 624 that indexes the current position within the main array.

The input seed is processed by `SeedSequence` to fill the whole state. The first element is reset such that only its most significant bit is set.

**Parallel Features**

The preferred way to use a BitGenerator in parallel applications is to use the `SeedSequence.spawn` method to obtain entropy values, and to use these to generate new BitGenerators:

>>> from numpy.random import Generator, MT19937, SeedSequence >>> sg = SeedSequence(1234) >>> rg = Generator(MT19937(s)) for s in sg.spawn(10)

Another method is to use `MT19937.jumped` which advances the state as-if :math:`2^

` random numbers have been generated (1_, 2_). This allows the original sequence to be split so that distinct segments can be used in each worker process. All generators should be chained to ensure that the segments come from the same sequence.

>>> from numpy.random import Generator, MT19937, SeedSequence >>> sg = SeedSequence(1234) >>> bit_generator = MT19937(sg) >>> rg = >>> for _ in range(10): ... rg.append(Generator(bit_generator)) ... # Chain the BitGenerators ... bit_generator = bit_generator.jumped()

**Compatibility Guarantee**

``MT19937`` makes a guarantee that a fixed seed and will always produce the same random integer stream.

References ---------- .. 1 Hiroshi Haramoto, Makoto Matsumoto, and Pierre L'Ecuyer, 'A Fast Jump Ahead Algorithm for Linear Recurrences in a Polynomial Space', Sequences and Their Applications - SETA, 290--298, 2008. .. 2 Hiroshi Haramoto, Makoto Matsumoto, Takuji Nishimura, François Panneton, Pierre L'Ecuyer, 'Efficient Jump Ahead for F2-Linear Random Number Generators', INFORMS JOURNAL ON COMPUTING, Vol. 20, No. 3, Summer 2008, pp. 385-390.

val jumped : ?jumps:[ `Positive of Py.Object.t | `I of int ] -> [> tag ] Obj.t -> Py.Object.t

jumped(jumps=1)

Returns a new bit generator with the state jumped

The state of the returned big generator is jumped as-if 2**(128 * jumps) random numbers have been generated.

Parameters ---------- jumps : integer, positive Number of times to jump the state of the bit generator returned

Returns ------- bit_generator : MT19937 New instance of generator jumped iter times

Notes ----- The jump step is computed using a modified version of Matsumoto's implementation of Horner's method. The step polynomial is precomputed to perform 2**128 steps. The jumped state has been verified to match the state produced using Matsumoto's original code.

References ---------- .. 1 Matsumoto, M, Generating multiple disjoint streams of pseudorandom number sequences. Accessed on: May 6, 2020. http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/JUMP/ .. 2 Hiroshi Haramoto, Makoto Matsumoto, Takuji Nishimura, François Panneton, Pierre L'Ecuyer, 'Efficient Jump Ahead for F2-Linear Random Number Generators', INFORMS JOURNAL ON COMPUTING, Vol. 20, No. 3, Summer 2008, pp. 385-390.

val lock : t -> Py.Object.t

Attribute lock: get value or raise Not_found if None.

val lock_opt : t -> Py.Object.t option

Attribute lock: get value as an option.

val to_string : t -> string

Print the object to a human-readable representation.

val show : t -> string

Print the object to a human-readable representation.

val pp : Stdlib.Format.formatter -> t -> unit

Pretty-print the object to a formatter.