Clarify docs

This commit is contained in:
DBotThePony 2025-03-08 17:14:54 +07:00
parent 7d00896b46
commit 806472cc99
Signed by: DBot
GPG Key ID: DCC23B5715498507
2 changed files with 4 additions and 1 deletions

View File

@ -7,6 +7,9 @@ import java.util.random.RandomGenerator
*
* Internal state is presented as 64-bit integer, and high-order bits of internal state are
* used to generate numbers.
*
* Generally shouldn't be used, and instead [PCG32Random] should be used, considering the latter has same memory
* requirements but has way better statistical properties.
*/
open class LCG64Random(protected var seed: Long) : RandomGenerator {
override fun nextLong(): Long {

View File

@ -3,7 +3,7 @@ package ru.dbotthepony.kommons.random
import java.util.random.RandomGenerator
/**
* PCG XSH RR 32-bit (64-bit state) random generator, which has better statistical properties
* PCG XSH RR 32-bit (64-bit state) random generator, which has way better statistical properties
* than plain [LCG64Random] generator
*/
open class PCG32Random(protected var seed: Long) : RandomGenerator {