Esempio n. 1
0
 /// <summary>Copy the seed from another RNG, without mutating it</summary>
 public XorShift(XorShift readSeedFrom) : this(readSeedFrom.x)
 {
 }
Esempio n. 2
0
 /// <summary>Copy the seed from another RNG, without mutating it</summary>
 public XorShift(XorShift readSeedFrom) : this((UInt64)readSeedFrom.x)
 {
 }