ParallelRandom.Restart Method

Definition

Namespace: Extreme.Mathematics.Random
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

Restart() Restarts the random number generator using the original seed.
Restart(Int32) Restarts the random number generator using the specified seed.

Restart

Restarts the random number generator using the original seed.
C#
public override void Restart()

Remarks

The ExtendedRandom class does not support restarting.

Exceptions

NotSupportedExceptionAlways thrown.

Restart(Int32)

Restarts the random number generator using the specified seed.
C#
public override void Restart(
	int seed
)

Parameters

seed  Int32
The new seed.

Remarks

The ExtendedRandom class does not support reseeding.

Exceptions

NotSupportedExceptionAlways thrown.

See Also