class XORShift {
private long rnd;
public XORShift(long rnd) {this.rnd = rnd; }
public long getRandom() {
this.rnd ^= (this.rnd << 21);
this.rnd ^= (this.rnd >>> 35);
this.rnd ^= (this.rnd << 4);
return this.rnd; }
}
class XORShift {
private long rnd;
public XORShift(long rnd) {this.rnd = rnd; }
public long getRandom() {
this.rnd ^= (this.rnd << 21);
this.rnd ^= (this.rnd >>> 35);
this.rnd ^= (this.rnd << 4);
return this.rnd; }
}
|