You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 11, 2023. It is now read-only.
/// <param name="seek">The initial seek of the random generator. Specify the seek less than 0 to obtain different initialization each time the Reset is invoked.</param>
public RandomGenerator(RandomValueSettings cfg, int seek = 0)
{
_cfg = (RandomValueSettings)cfg.DeepClone();
_seek = seek;
Reset();
return;
}
//Methods
/// <inheritdoc />
public void Reset()
{
_rand = (_seek < 0) ? new Random() : new Random(_seek);