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