Pcg32.Advance Method

Advances the generator forward by a specified number of steps.

Definition

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

Parameters

delta  UInt64
The number of steps to advance.

Implements

IAdvanceable.Advance(UInt64)

Remarks

This operation is equivalent to calling NextUInt32()delta times, but is performed in O(log(delta)) time.

See Also