diff --git a/pom.xml b/pom.xml index 2d567e9bc8..9f34ad47bb 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ com.squidpony squidlib-parent - 3.0.0-SNAPSHOT + 3.0.0-b9 pom squidlib-parent diff --git a/squidlib-extra/pom.xml b/squidlib-extra/pom.xml index ee09543c01..f6376ed050 100644 --- a/squidlib-extra/pom.xml +++ b/squidlib-extra/pom.xml @@ -5,7 +5,7 @@ squidlib-parent com.squidpony - 3.0.0-SNAPSHOT + 3.0.0-b9 4.0.0 @@ -28,7 +28,7 @@ com.squidpony squidlib-util - 3.0.0-SNAPSHOT + 3.0.0-b9 com.badlogicgames.gdx diff --git a/squidlib-performance/pom.xml b/squidlib-performance/pom.xml index 34a7f13d2e..89ec841c9d 100644 --- a/squidlib-performance/pom.xml +++ b/squidlib-performance/pom.xml @@ -33,11 +33,11 @@ THE POSSIBILITY OF SUCH DAMAGE. squidlib-parent com.squidpony - 3.0.0-SNAPSHOT + 3.0.0-b9 squidlib-performance - 3.0.0-SNAPSHOT + 3.0.0-b9 jar squidlib-performance @@ -74,7 +74,7 @@ THE POSSIBILITY OF SUCH DAMAGE. com.squidpony squidlib - 3.0.0-SNAPSHOT + 3.0.0-b9 com.badlogicgames.gdx diff --git a/squidlib-util/pom.xml b/squidlib-util/pom.xml index e739b19e5e..144406b186 100644 --- a/squidlib-util/pom.xml +++ b/squidlib-util/pom.xml @@ -6,7 +6,7 @@ com.squidpony squidlib-parent - 3.0.0-SNAPSHOT + 3.0.0-b9 ../ squidlib-util diff --git a/squidlib-util/src/main/java/squidpony/squidmath/Light32RNG.java b/squidlib-util/src/main/java/squidpony/squidmath/Light32RNG.java index f464c0275c..b63cceaf5f 100644 --- a/squidlib-util/src/main/java/squidpony/squidmath/Light32RNG.java +++ b/squidlib-util/src/main/java/squidpony/squidmath/Light32RNG.java @@ -62,7 +62,7 @@ public Light32RNG(long stateCombined) } public final int nextInt() { - int z = (state += (state == 0) ? (inc += 0x632BE5AC) : inc); + int z = (state += (state == 0) ? (inc += 0x632BE5A6) : inc); z = (z ^ (z >>> 16)) * 0x85EBCA6B; z = (z ^ (z >>> 13)) * 0xC2B2AE35; return z ^ (z >>> 16); @@ -77,7 +77,7 @@ public final int nextInt() { */ @Override public final int next(int bits) { - int z = (state += (state == 0) ? (inc += 0x632BE5AC) : inc); + int z = (state += (state == 0) ? (inc += 0x632BE5A6) : inc); z = (z ^ (z >>> 16)) * 0x85EBCA6B; z = (z ^ (z >>> 13)) * 0xC2B2AE35; return (z ^ (z >>> 16)) >>> (32 - bits); @@ -93,11 +93,11 @@ public final int next(int bits) { */ @Override public final long nextLong() { - int y = (state += (state == 0) ? (inc += 0x632BE5AC) : inc), - z = (state += (state == 0) ? (inc += 0x632BE5AC) : inc); + int y = (state += (state == 0) ? (inc += 0x632BE5A6) : inc), + z = (state += (state == 0) ? (inc += 0x632BE5A6) : inc); y = (y ^ (y >>> 16)) * 0x85EBCA6B; - y = (y ^ (y >>> 13)) * 0xC2B2AE35; z = (z ^ (z >>> 16)) * 0x85EBCA6B; + y = (y ^ (y >>> 13)) * 0xC2B2AE35; z = (z ^ (z >>> 13)) * 0xC2B2AE35; return (long)(y ^ (y >>> 16)) << 32 ^ (z ^ (z >>> 16)); } diff --git a/squidlib/pom.xml b/squidlib/pom.xml index cc1b5298ab..c20044fd73 100644 --- a/squidlib/pom.xml +++ b/squidlib/pom.xml @@ -6,7 +6,7 @@ com.squidpony squidlib-parent - 3.0.0-SNAPSHOT + 3.0.0-b9 ../ squidlib @@ -40,7 +40,7 @@ com.squidpony squidlib-util - 3.0.0-SNAPSHOT + 3.0.0-b9