Threefry4x64Engine.Advance Method

Advances the RNG state by the specified number of outputs.

Definition

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

Parameters

count  UInt64
 

Implements

IAdvanceable.Advance(UInt64)

Remarks

For counter-based RNGs, Advance operates on the counter directly. Each step advances the counter by 1, where each counter position produces a full block of output values.

See Also