Pcg64Dxsm.NumpyJump Method

Advances this generator by the equivalent of count NumPy PCG64DXSM jumps.

Definition

Namespace: Numerics.NET.Random
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.3.0
C#
public void NumpyJump(
	ulong count = 1
)

Parameters

count  UInt64  (Optional)
The number of jumps to perform. Defaults to 1.

Remarks

This method uses the same jump polynomial as NumPy's PCG64DXSM bit-generator, enabling bit-identical parallel streams when combined with the Numpy seed profile.

See Also