Philox4x32Engine.Jump Method

Jumps the RNG forward by the specified number of primary jump strides.

Definition

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

Parameters

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

Implements

IJumpable.Jump(UInt64)

Remarks

For Philox4x32, a jump advances the 128-bit counter by 2^64, effectively skipping 2^64 blocks (each block produces 4 × 32-bit values).

See Also