Ejemplo n.º 1
0
 public Xoroshiro128p(Xoroshiro128p other)
 {
     state = other.state;
 }
Ejemplo n.º 2
0
 public Rand(ulong seed)
 {
     rng = new Xoroshiro128p(seed);
 }