Fix gjrand64 initialization

This commit is contained in:
DBotThePony 2025-03-09 21:19:43 +07:00
parent 4681ce8a13
commit 2471abdd1f
Signed by: DBot
GPG Key ID: DCC23B5715498507
2 changed files with 20 additions and 2 deletions

View File

@ -4,7 +4,7 @@ kotlin.code.style=official
specifyKotlinAsDependency=false
projectGroup=ru.dbotthepony.kommons
projectVersion=3.5.1
projectVersion=3.5.2
guavaDepVersion=33.0.0
gsonDepVersion=2.8.9

View File

@ -21,9 +21,27 @@ open class GJRAND64Random protected constructor(
protected var s3: Long,
marker: Nothing?
) : RandomGenerator {
constructor(seed0: Long, seed1: Long) : this(seed0, seed1, SEED2_INIT, SEED3_INIT, null)
constructor(seed0: Long, seed1: Long) : this(seed0, seed1, SEED2_INIT, SEED3_INIT, null) {
for (i in 0 until 14)
nextLong()
}
constructor(seed: Long) : this(seed, 0L)
protected fun reinitialize(seed: Long) {
reinitialize(seed, 0L)
}
protected fun reinitialize(seed0: Long, seed1: Long) {
s0 = seed0
s1 = seed1
s2 = SEED2_INIT
s3 = SEED3_INIT
for (i in 0 until 14)
nextLong()
}
final override fun nextLong(): Long {
s1 += s2
s0 = s0.rotateLeft(32)