File tree Expand file tree Collapse file tree
commons-rng-core/src/main/java/org/apache/commons/rng/core/source64 Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4646 */
4747public final class Philox4x64 extends LongProvider implements LongJumpableUniformRandomProvider ,
4848 ArbitrarilyJumpableUniformRandomProvider {
49- /** Philox 32 -bit mixing constant for counter 0. */
49+ /** Philox 64 -bit mixing constant for counter 0. */
5050 private static final long PHILOX_M0 = 0xD2E7470EE14C6C93L ;
51- /** Philox 32 -bit mixing constant for counter 1. */
51+ /** Philox 64 -bit mixing constant for counter 1. */
5252 private static final long PHILOX_M1 = 0xCA5A826395121157L ;
53- /** Philox 32 -bit constant for key 0. */
53+ /** Philox 64 -bit constant for key 0. */
5454 private static final long PHILOX_W0 = 0x9E3779B97F4A7C15L ;
55- /** Philox 32 -bit constant for key 1. */
55+ /** Philox 64 -bit constant for key 1. */
5656 private static final long PHILOX_W1 = 0xBB67AE8584CAA73BL ;
5757 /** Internal buffer size. */
5858 private static final int PHILOX_BUFFER_SIZE = 4 ;
You can’t perform that action at this time.
0 commit comments