Don't override nextGaussian, because JVM implementation should be generally faster
This commit is contained in:
parent
83637ca965
commit
ba49dd7575
@ -34,7 +34,7 @@ mod_name=Better Random
|
|||||||
# The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default.
|
# The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default.
|
||||||
mod_license=BSD 2 Clause
|
mod_license=BSD 2 Clause
|
||||||
# The mod version. See https://semver.org/
|
# The mod version. See https://semver.org/
|
||||||
mod_version=1.3.4
|
mod_version=1.3.5
|
||||||
# The group ID for the mod. It is only important when publishing as an artifact to a Maven repository.
|
# The group ID for the mod. It is only important when publishing as an artifact to a Maven repository.
|
||||||
# This should match the base package used for the mod sources.
|
# This should match the base package used for the mod sources.
|
||||||
# See https://maven.apache.org/guides/mini/guide-naming-conventions.html
|
# See https://maven.apache.org/guides/mini/guide-naming-conventions.html
|
||||||
|
@ -17,9 +17,7 @@ public class GJRAND64RandomSource implements RandomGenerator, RandomSource {
|
|||||||
Codec.LONG.fieldOf("s0").forGetter(o -> o.s0),
|
Codec.LONG.fieldOf("s0").forGetter(o -> o.s0),
|
||||||
Codec.LONG.fieldOf("s1").forGetter(o -> o.s1),
|
Codec.LONG.fieldOf("s1").forGetter(o -> o.s1),
|
||||||
Codec.LONG.fieldOf("s2").forGetter(o -> o.s2),
|
Codec.LONG.fieldOf("s2").forGetter(o -> o.s2),
|
||||||
Codec.LONG.fieldOf("s3").forGetter(o -> o.s3),
|
Codec.LONG.fieldOf("s3").forGetter(o -> o.s3)
|
||||||
Codec.DOUBLE.fieldOf("nextNextGaussian").forGetter(o -> o.nextNextGaussian),
|
|
||||||
Codec.BOOL.fieldOf("haveNextNextGaussian").forGetter(o -> o.haveNextNextGaussian)
|
|
||||||
).apply(it, GJRAND64RandomSource::new);
|
).apply(it, GJRAND64RandomSource::new);
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -27,23 +25,17 @@ public class GJRAND64RandomSource implements RandomGenerator, RandomSource {
|
|||||||
private long s1;
|
private long s1;
|
||||||
private long s2;
|
private long s2;
|
||||||
private long s3;
|
private long s3;
|
||||||
private double nextNextGaussian;
|
|
||||||
private boolean haveNextNextGaussian;
|
|
||||||
|
|
||||||
private GJRAND64RandomSource(
|
private GJRAND64RandomSource(
|
||||||
long s0,
|
long s0,
|
||||||
long s1,
|
long s1,
|
||||||
long s2,
|
long s2,
|
||||||
long s3,
|
long s3
|
||||||
double nextNextGaussian,
|
|
||||||
boolean haveNextNextGaussian
|
|
||||||
) {
|
) {
|
||||||
this.s0 = s0;
|
this.s0 = s0;
|
||||||
this.s1 = s1;
|
this.s1 = s1;
|
||||||
this.s2 = s2;
|
this.s2 = s2;
|
||||||
this.s3 = s3;
|
this.s3 = s3;
|
||||||
this.nextNextGaussian = nextNextGaussian;
|
|
||||||
this.haveNextNextGaussian = haveNextNextGaussian;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public GJRAND64RandomSource() {
|
public GJRAND64RandomSource() {
|
||||||
@ -105,7 +97,6 @@ public class GJRAND64RandomSource implements RandomGenerator, RandomSource {
|
|||||||
@Override
|
@Override
|
||||||
public void setSeed(long l) {
|
public void setSeed(long l) {
|
||||||
reinitialize(l);
|
reinitialize(l);
|
||||||
haveNextNextGaussian = false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@ -140,24 +131,7 @@ public class GJRAND64RandomSource implements RandomGenerator, RandomSource {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public double nextGaussian() {
|
public double nextGaussian() {
|
||||||
if (this.haveNextNextGaussian) {
|
return RandomGenerator.super.nextGaussian();
|
||||||
this.haveNextNextGaussian = false;
|
|
||||||
return this.nextNextGaussian;
|
|
||||||
} else {
|
|
||||||
double d0;
|
|
||||||
double d1;
|
|
||||||
double d2;
|
|
||||||
do {
|
|
||||||
d0 = 2.0 * nextDouble() - 1.0;
|
|
||||||
d1 = 2.0 * nextDouble() - 1.0;
|
|
||||||
d2 = Mth.square(d0) + Mth.square(d1);
|
|
||||||
} while (d2 >= 1.0 || d2 == 0.0);
|
|
||||||
|
|
||||||
double d3 = Math.sqrt(-2.0 * Math.log(d2) / d2);
|
|
||||||
this.nextNextGaussian = d1 * d3;
|
|
||||||
this.haveNextNextGaussian = true;
|
|
||||||
return d0 * d3;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
Loading…
Reference in New Issue
Block a user