Extended Random.Restart Method
Definition
Namespace: Extreme.Mathematics.Random
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Overload List
Restart() | Restarts the random number generator using the original seed. |
Restart( | Restarts the random number generator using the specified seed. |
Restart
Restarts the random number generator using the original seed.
public virtual void Restart()
Remarks
The ExtendedRandom class does not support restarting.
Exceptions
NotSupportedException | Always thrown. |
Restart(Int32)
Restarts the random number generator using the specified seed.
public virtual void Restart(
int seed
)
Parameters
- seed Int32
- The new seed.
Remarks
The ExtendedRandom class does not support reseeding.
Exceptions
NotSupportedException | Always thrown. |