// ----------------------------------------------------------------- // public long NextPrimeBase() { long x = this.BaseLong(); if (x < 0) { x = -x; } while (!CellRandom.IsPrime(x)) { x = this.BaseLong(); if (x < 0) { x = -x; } } return(x); }
public void Remix() { this.Remix(CellRandom.TruelyRandomSeed()); }
public CellRandom() : this(CellRandom.TruelyRandomSeed()) { }