src/java.base/share/classes/java/util/random/L64X256MixRandom.java
author jlaskey
Thu, 14 Nov 2019 08:54:56 -0400
branchJDK-8193209-branch
changeset 59080 1b314be4feb2
parent 57684 7cb325557832
permissions -rw-r--r--
[mq]: latest
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
57388
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
     1
/*
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
     2
 * Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
     4
 *
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
    10
 *
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
    15
 * accompanied this code).
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
    16
 *
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
    20
 *
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
    23
 * questions.
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
    24
 */
57437
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
    25
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
    26
package java.util.random;
57388
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
    27
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
    28
import java.math.BigInteger;
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
    29
import java.util.concurrent.atomic.AtomicLong;
57547
56cbdc3ea079 Reorganize the abstract and interface classes.
jlaskey
parents: 57437
diff changeset
    30
import java.util.random.RandomGenerator.SplittableGenerator;
59080
1b314be4feb2 [mq]: latest
jlaskey
parents: 57684
diff changeset
    31
import java.util.random.RandomSupport.AbstractSplittableWithBrineGenerator;
57388
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
    32
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
    33
/**
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
    34
 * A generator of uniform pseudorandom values applicable for use in
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
    35
 * (among other contexts) isolated parallel computations that may
57437
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
    36
 * generate subtasks.  Class {@link L64X256MixRandom} implements
57547
56cbdc3ea079 Reorganize the abstract and interface classes.
jlaskey
parents: 57437
diff changeset
    37
 * interfaces {@link RandomGenerator} and {@link SplittableGenerator},
57388
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
    38
 * and therefore supports methods for producing pseudorandomly chosen
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
    39
 * numbers of type {@code int}, {@code long}, {@code float}, and {@code double}
57437
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
    40
 * as well as creating new split-off {@link L64X256MixRandom} objects,
57388
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
    41
 * with similar usages as for class {@link java.util.SplittableRandom}.
57437
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
    42
 * <p>
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
    43
 * Series of generated values pass the TestU01 BigCrush and PractRand test suites
57388
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
    44
 * that measure independence and uniformity properties of random number generators.
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
    45
 * (Most recently validated with
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
    46
 * <a href="http://simul.iro.umontreal.ca/testu01/tu01.html">version 1.2.3 of TestU01</a>
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
    47
 * and <a href="http://pracrand.sourceforge.net">version 0.90 of PractRand</a>.
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
    48
 * Note that TestU01 BigCrush was used to test not only values produced by the {@code nextLong()}
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
    49
 * method but also the result of bit-reversing each value produced by {@code nextLong()}.)
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
    50
 * These tests validate only the methods for certain
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
    51
 * types and ranges, but similar properties are expected to hold, at
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
    52
 * least approximately, for others as well.
57437
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
    53
 * <p>
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
    54
 * {@link L64X256MixRandom} is a specific member of the LXM family of algorithms
57388
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
    55
 * for pseudorandom number generators.  Every LXM generator consists of two
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
    56
 * subgenerators; one is an LCG (Linear Congruential Generator) and the other is
59080
1b314be4feb2 [mq]: latest
jlaskey
parents: 57684
diff changeset
    57
 * an Xorshift generator.  Each output of an LXM generator is the result of
1b314be4feb2 [mq]: latest
jlaskey
parents: 57684
diff changeset
    58
 * combining state from the LCG with state from the Xorshift generator by
1b314be4feb2 [mq]: latest
jlaskey
parents: 57684
diff changeset
    59
 * using a Mixing function (and then the state of the LCG and the state of the
1b314be4feb2 [mq]: latest
jlaskey
parents: 57684
diff changeset
    60
 * Xorshift generator are advanced).
57437
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
    61
 * <p>
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
    62
 * The LCG subgenerator for {@link L64X256MixRandom} has an update step of the
57388
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
    63
 * form {@code s = m * s + a}, where {@code s}, {@code m}, and {@code a} are all
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
    64
 * of type {@code long}; {@code s} is the mutable state, the multiplier {@code m}
57684
7cb325557832 imported patch comments
jlaskey
parents: 57547
diff changeset
    65
 * is fixed (the same for all instances of {@link L64X256MixRandom}) and the addend
57388
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
    66
 * {@code a} is a parameter (a final field of the instance).  The parameter
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
    67
 * {@code a} is required to be odd (this allows the LCG to have the maximal
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
    68
 * period, namely 2<sup>64</sup>); therefore there are 2<sup>63</sup> distinct choices
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
    69
 * of parameter.
57437
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
    70
 * <p>
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
    71
 * The Xorshift subgenerator for {@link L64X256MixRandom} is the {@code xoshiro256} algorithm,
57388
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
    72
 * version 1.0 (parameters 17, 45), without any final scrambler such as "+" or "**".
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
    73
 * Its state consists of four {@code long} fields {@code x0}, {@code x1}, {@code x2},
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
    74
 * and {@code x3}, which can take on any values provided that they are not all zero.
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
    75
 * The period of this subgenerator is 2<sup>256</sup>-1.
57437
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
    76
 * <p>
59080
1b314be4feb2 [mq]: latest
jlaskey
parents: 57684
diff changeset
    77
 * The mixing function for {@link L64X256MixRandom} is {@link RandomSupport.mixLea64}
1b314be4feb2 [mq]: latest
jlaskey
parents: 57684
diff changeset
    78
 * applied to the argument {@code (s + x0)}.
57437
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
    79
 * <p>
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
    80
 * Because the periods 2<sup>64</sup> and 2<sup>256</sup>-1 of the two subgenerators
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
    81
 * are relatively prime, the <em>period</em> of any single {@link L64X256MixRandom} object
57388
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
    82
 * (the length of the series of generated 64-bit values before it repeats) is the product
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
    83
 * of the periods of the subgenerators, that is, 2<sup>64</sup>(2<sup>256</sup>-1),
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
    84
 * which is just slightly smaller than 2<sup>320</sup>.  Moreover, if two distinct
57437
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
    85
 * {@link L64X256MixRandom} objects have different {@code a} parameters, then their
57388
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
    86
 * cycles of produced values will be different.
57437
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
    87
 * <p>
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
    88
 * The 64-bit values produced by the {@code nextLong()} method are exactly equidistributed.
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
    89
 * For any specific instance of {@link L64X256MixRandom}, over the course of its cycle each
57388
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
    90
 * of the 2<sup>64</sup> possible {@code long} values will be produced 2<sup>256</sup>-1 times.
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
    91
 * The values produced by the {@code nextInt()}, {@code nextFloat()}, and {@code nextDouble()}
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
    92
 * methods are likewise exactly equidistributed.
57437
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
    93
 * <p>
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
    94
 * In fact, the 64-bit values produced by the {@code nextLong()} method are 4-equidistributed.
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
    95
 * To be precise: for any specific instance of {@link L64X256MixRandom}, consider
57388
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
    96
 * the (overlapping) length-4 subsequences of the cycle of 64-bit values produced by
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
    97
 * {@code nextLong()} (assuming no other methods are called that would affect the state).
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
    98
 * There are 2<sup>64</sup>(2<sup>256</sup>-1) such subsequences, and each subsequence,
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
    99
 * which consists of 4 64-bit values, can have one of 2<sup>256</sup> values. Of those
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   100
 * 2<sup>256</sup> subsequence values, nearly all of them (2<sup>256</sup>-2<sup>64</sup>)
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   101
 * occur 2<sup>64</sup> times over the course of the entire cycle, and the other
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   102
 * 2<sup>64</sup> subsequence values occur only 2<sup>64</sup>-1 times.  So the ratio
59080
1b314be4feb2 [mq]: latest
jlaskey
parents: 57684
diff changeset
   103
 * of the probability of getting any specific one of the less common subsequence values and the
1b314be4feb2 [mq]: latest
jlaskey
parents: 57684
diff changeset
   104
 * probability of getting any specific one of the more common subsequence values is 1-2<sup>-64</sup>.
57388
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   105
 * (Note that the set of 2<sup>64</sup> less-common subsequence values will differ from
57437
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
   106
 * one instance of {@link L64X256MixRandom} to another, as a function of the additive
57388
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   107
 * parameter of the LCG.)  The values produced by the {@code nextInt()}, {@code nextFloat()},
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   108
 * and {@code nextDouble()} methods are likewise 4-equidistributed.
57437
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
   109
 * <p>
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
   110
 * Method {@link #split} constructs and returns a new {@link L64X256MixRandom}
57388
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   111
 * instance that shares no mutable state with the current instance. However, with
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   112
 * very high probability, the values collectively generated by the two objects
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   113
 * have the same statistical properties as if the same quantity of values were
57437
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
   114
 * generated by a single thread using a single {@link L64X256MixRandom} object.
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
   115
 * This is because, with high probability, distinct {@link L64X256MixRandom} objects
57388
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   116
 * have distinct {@code a} parameters and therefore use distinct members of the
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   117
 * algorithmic family; and even if their {@code a} parameters are the same, with
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   118
 * very high probability they will traverse different parts of their common state
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   119
 * cycle.
57437
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
   120
 * <p>
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
   121
 * As with {@link java.util.SplittableRandom}, instances of
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
   122
 * {@link L64X256MixRandom} are <em>not</em> thread-safe.
57388
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   123
 * They are designed to be split, not shared, across threads. For
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   124
 * example, a {@link java.util.concurrent.ForkJoinTask} fork/join-style
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   125
 * computation using random numbers might include a construction
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   126
 * of the form {@code new Subtask(someL64X256MixRandom.split()).fork()}.
57437
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
   127
 * <p>
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
   128
 * This class provides additional methods for generating random
57388
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   129
 * streams, that employ the above techniques when used in
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   130
 * {@code stream.parallel()} mode.
57437
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
   131
 * <p>
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
   132
 * Instances of {@link L64X256MixRandom} are not cryptographically
57388
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   133
 * secure.  Consider instead using {@link java.security.SecureRandom}
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   134
 * in security-sensitive applications. Additionally,
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   135
 * default-constructed instances do not use a cryptographically random
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   136
 * seed unless the {@linkplain System#getProperty system property}
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   137
 * {@code java.util.secureRandomSeed} is set to {@code true}.
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   138
 *
57437
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
   139
 * @since 14
57388
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   140
 */
59080
1b314be4feb2 [mq]: latest
jlaskey
parents: 57684
diff changeset
   141
public final class L64X256MixRandom extends AbstractSplittableWithBrineGenerator {
57388
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   142
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   143
    /*
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   144
     * Implementation Overview.
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   145
     *
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   146
     * The split operation uses the current generator to choose six new 64-bit
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   147
     * long values that are then used to initialize the parameter `a` and the
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   148
     * state variables `s`, `x0`, `x1`, `x2`, and `x3` for a newly constructed
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   149
     * generator.
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   150
     *
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   151
     * With extremely high probability, no two generators so chosen
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   152
     * will have the same `a` parameter, and testing has indicated
57437
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
   153
     * that the values generated by two instances of {@link L64X256MixRandom}
57388
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   154
     * will be (approximately) independent if have different values for `a`.
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   155
     *
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   156
     * The default (no-argument) constructor, in essence, uses
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   157
     * "defaultGen" to generate six new 64-bit values for the same
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   158
     * purpose.  Multiple generators created in this way will certainly
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   159
     * differ in their `a` parameters.  The defaultGen state must be accessed
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   160
     * in a thread-safe manner, so we use an AtomicLong to represent
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   161
     * this state.  To bootstrap the defaultGen, we start off using a
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   162
     * seed based on current time unless the
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   163
     * java.util.secureRandomSeed property is set. This serves as a
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   164
     * slimmed-down (and insecure) variant of SecureRandom that also
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   165
     * avoids stalls that may occur when using /dev/random.
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   166
     *
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   167
     * File organization: First static fields, then instance
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   168
     * fields, then constructors, then instance methods.
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   169
     */
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   170
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   171
    /* ---------------- static fields ---------------- */
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   172
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   173
    /**
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   174
     * The seed generator for default constructors.
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   175
     */
57547
56cbdc3ea079 Reorganize the abstract and interface classes.
jlaskey
parents: 57437
diff changeset
   176
    private static final AtomicLong defaultGen = new AtomicLong(RandomSupport.initialSeed());
57388
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   177
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   178
    /*
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   179
     * The period of this generator, which is (2**256 - 1) * 2**64.
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   180
     */
57437
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
   181
    private static final BigInteger PERIOD =
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
   182
        BigInteger.ONE.shiftLeft(256).subtract(BigInteger.ONE).shiftLeft(64);
57388
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   183
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   184
    /*
59080
1b314be4feb2 [mq]: latest
jlaskey
parents: 57684
diff changeset
   185
     * Multiplier used in the LCG portion of the algorithm.
1b314be4feb2 [mq]: latest
jlaskey
parents: 57684
diff changeset
   186
     * Chosen based on research by Sebastiano Vigna and Guy Steele (2019).
1b314be4feb2 [mq]: latest
jlaskey
parents: 57684
diff changeset
   187
     * The spectral scores for dimensions 2 through 8 for the multiplier 0xd1342543de82ef95
1b314be4feb2 [mq]: latest
jlaskey
parents: 57684
diff changeset
   188
     * are [0.958602, 0.937479, 0.870757, 0.822326, 0.820405, 0.813065, 0.760215].
57388
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   189
     */
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   190
59080
1b314be4feb2 [mq]: latest
jlaskey
parents: 57684
diff changeset
   191
    private static final long M = 0xd1342543de82ef95L;
57388
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   192
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   193
    /* ---------------- instance fields ---------------- */
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   194
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   195
    /**
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   196
     * The parameter that is used as an additive constant for the LCG.
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   197
     * Must be odd.
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   198
     */
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   199
    private final long a;
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   200
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   201
    /**
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   202
     * The per-instance state: s for the LCG; x0, x1, x2, and x3 for the xorshift.
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   203
     * At least one of the four fields x0, x1, x2, and x3 must be nonzero.
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   204
     */
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   205
    private long s, x0, x1, x2, x3;
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   206
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   207
    /* ---------------- constructors ---------------- */
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   208
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   209
    /**
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   210
     * Basic constructor that initializes all fields from parameters.
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   211
     * It then adjusts the field values if necessary to ensure that
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   212
     * all constraints on the values of fields are met.
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   213
     *
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   214
     * @param a additive parameter for the LCG
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   215
     * @param s initial state for the LCG
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   216
     * @param x0 first word of the initial state for the xorshift generator
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   217
     * @param x1 second word of the initial state for the xorshift generator
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   218
     * @param x2 third word of the initial state for the xorshift generator
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   219
     * @param x3 fourth word of the initial state for the xorshift generator
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   220
     */
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   221
    public L64X256MixRandom(long a, long s, long x0, long x1, long x2, long x3) {
57437
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
   222
        // Force a to be odd.
57388
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   223
        this.a = a | 1;
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   224
        this.s = s;
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   225
        this.x0 = x0;
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   226
        this.x1 = x1;
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   227
        this.x2 = x2;
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   228
        this.x3 = x3;
57437
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
   229
        // If x0, x1, x2, and x3 are all zero, we must choose nonzero values.
57388
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   230
        if ((x0 | x1 | x2 | x3) == 0) {
59080
1b314be4feb2 [mq]: latest
jlaskey
parents: 57684
diff changeset
   231
	    long v = s;
57437
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
   232
            // At least three of the four values generated here will be nonzero.
59080
1b314be4feb2 [mq]: latest
jlaskey
parents: 57684
diff changeset
   233
            this.x0 = RandomSupport.mixStafford13(v += RandomSupport.GOLDEN_RATIO_64);
1b314be4feb2 [mq]: latest
jlaskey
parents: 57684
diff changeset
   234
            this.x1 = RandomSupport.mixStafford13(v += RandomSupport.GOLDEN_RATIO_64);
1b314be4feb2 [mq]: latest
jlaskey
parents: 57684
diff changeset
   235
            this.x2 = RandomSupport.mixStafford13(v += RandomSupport.GOLDEN_RATIO_64);
1b314be4feb2 [mq]: latest
jlaskey
parents: 57684
diff changeset
   236
            this.x3 = RandomSupport.mixStafford13(v + RandomSupport.GOLDEN_RATIO_64);
57437
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
   237
        }
57388
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   238
    }
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   239
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   240
    /**
57437
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
   241
     * Creates a new instance of {@link L64X256MixRandom} using the
57388
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   242
     * specified {@code long} value as the initial seed. Instances of
57437
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
   243
     * {@link L64X256MixRandom} created with the same seed in the same
57388
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   244
     * program generate identical sequences of values.
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   245
     *
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   246
     * @param seed the initial seed
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   247
     */
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   248
    public L64X256MixRandom(long seed) {
57437
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
   249
        // Using a value with irregularly spaced 1-bits to xor the seed
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
   250
        // argument tends to improve "pedestrian" seeds such as 0 or
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
   251
        // other small integers.  We may as well use SILVER_RATIO_64.
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
   252
        //
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
   253
        // The seed is hashed by mixMurmur64 to produce the `a` parameter.
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
   254
        // The seed is hashed by mixStafford13 to produce the initial `x0`,
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
   255
        // which will then be used to produce the first generated value.
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
   256
        // The other x values are filled in as if by a SplitMix PRNG with
59080
1b314be4feb2 [mq]: latest
jlaskey
parents: 57684
diff changeset
   257
        // GOLDEN_RATIO_64 as the gamma value and mixStafford13 as the mixer.
57547
56cbdc3ea079 Reorganize the abstract and interface classes.
jlaskey
parents: 57437
diff changeset
   258
        this(RandomSupport.mixMurmur64(seed ^= RandomSupport.SILVER_RATIO_64),
57437
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
   259
             1,
57547
56cbdc3ea079 Reorganize the abstract and interface classes.
jlaskey
parents: 57437
diff changeset
   260
             RandomSupport.mixStafford13(seed),
56cbdc3ea079 Reorganize the abstract and interface classes.
jlaskey
parents: 57437
diff changeset
   261
             RandomSupport.mixStafford13(seed += RandomSupport.GOLDEN_RATIO_64),
56cbdc3ea079 Reorganize the abstract and interface classes.
jlaskey
parents: 57437
diff changeset
   262
             RandomSupport.mixStafford13(seed += RandomSupport.GOLDEN_RATIO_64),
56cbdc3ea079 Reorganize the abstract and interface classes.
jlaskey
parents: 57437
diff changeset
   263
             RandomSupport.mixStafford13(seed + RandomSupport.GOLDEN_RATIO_64));
57388
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   264
    }
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   265
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   266
    /**
57437
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
   267
     * Creates a new instance of {@link L64X256MixRandom} that is likely to
57388
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   268
     * generate sequences of values that are statistically independent
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   269
     * of those of any other instances in the current program execution,
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   270
     * but may, and typically does, vary across program invocations.
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   271
     */
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   272
    public L64X256MixRandom() {
57437
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
   273
        // Using GOLDEN_RATIO_64 here gives us a good Weyl sequence of values.
57547
56cbdc3ea079 Reorganize the abstract and interface classes.
jlaskey
parents: 57437
diff changeset
   274
        this(defaultGen.getAndAdd(RandomSupport.GOLDEN_RATIO_64));
57388
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   275
    }
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   276
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   277
    /**
57437
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
   278
     * Creates a new instance of {@link L64X256MixRandom} using the specified array of
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
   279
     * initial seed bytes. Instances of {@link L64X256MixRandom} created with the same
57388
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   280
     * seed array in the same program execution generate identical sequences of values.
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   281
     *
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   282
     * @param seed the initial seed
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   283
     */
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   284
    public L64X256MixRandom(byte[] seed) {
57437
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
   285
        // Convert the seed to 6 long values, of which the last 4 are not all zero.
57547
56cbdc3ea079 Reorganize the abstract and interface classes.
jlaskey
parents: 57437
diff changeset
   286
        long[] data = RandomSupport.convertSeedBytesToLongs(seed, 6, 4);
57437
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
   287
        long a = data[0], s = data[1], x0 = data[2], x1 = data[3], x2 = data[4], x3 = data[5];
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
   288
        // Force a to be odd.
57388
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   289
        this.a = a | 1;
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   290
        this.s = s;
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   291
        this.x0 = x0;
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   292
        this.x1 = x1;
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   293
        this.x2 = x2;
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   294
        this.x3 = x3;
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   295
    }
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   296
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   297
    /* ---------------- public methods ---------------- */
57437
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
   298
57388
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   299
    /**
59080
1b314be4feb2 [mq]: latest
jlaskey
parents: 57684
diff changeset
   300
     * Given 63 bits of "brine", constructs and returns a new instance of
1b314be4feb2 [mq]: latest
jlaskey
parents: 57684
diff changeset
   301
     * {@code L64X256MixRandom} that shares no mutable state with this instance.
57388
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   302
     * However, with very high probability, the set of values collectively
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   303
     * generated by the two objects has the same statistical properties as if
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   304
     * same the quantity of values were generated by a single thread using
59080
1b314be4feb2 [mq]: latest
jlaskey
parents: 57684
diff changeset
   305
     * a single {@code L64X256MixRandom} object.  Either or both of the two
57388
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   306
     * objects may be further split using the {@code split} method,
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   307
     * and the same expected statistical properties apply to the
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   308
     * entire set of generators constructed by such recursive splitting.
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   309
     *
59080
1b314be4feb2 [mq]: latest
jlaskey
parents: 57684
diff changeset
   310
     * @param source a {@code SplittableGenerator} instance to be used instead
57388
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   311
     *               of this one as a source of pseudorandom bits used to
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   312
     *               initialize the state of the new ones.
59080
1b314be4feb2 [mq]: latest
jlaskey
parents: 57684
diff changeset
   313
     * @param brine a long value, of which the low 63 bits are used to choose
1b314be4feb2 [mq]: latest
jlaskey
parents: 57684
diff changeset
   314
     *              the {@code a} parameter for the new instance.
1b314be4feb2 [mq]: latest
jlaskey
parents: 57684
diff changeset
   315
     * @return a new instance of {@code L64X256MixRandom}
57388
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   316
     */
59080
1b314be4feb2 [mq]: latest
jlaskey
parents: 57684
diff changeset
   317
    public SplittableGenerator split(SplittableGenerator source, long brine) {
1b314be4feb2 [mq]: latest
jlaskey
parents: 57684
diff changeset
   318
	// Pick a new instance "at random", but use the brine for `a`.
1b314be4feb2 [mq]: latest
jlaskey
parents: 57684
diff changeset
   319
        return new L64X256MixRandom(brine << 1, source.nextLong(),
1b314be4feb2 [mq]: latest
jlaskey
parents: 57684
diff changeset
   320
				    source.nextLong(), source.nextLong(),
1b314be4feb2 [mq]: latest
jlaskey
parents: 57684
diff changeset
   321
				    source.nextLong(), source.nextLong());
57388
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   322
    }
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   323
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   324
    /**
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   325
     * Returns a pseudorandom {@code long} value.
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   326
     *
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   327
     * @return a pseudorandom {@code long} value
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   328
     */
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   329
    public long nextLong() {
59080
1b314be4feb2 [mq]: latest
jlaskey
parents: 57684
diff changeset
   330
	// Compute the result based on current state information
1b314be4feb2 [mq]: latest
jlaskey
parents: 57684
diff changeset
   331
	// (this allows the computation to be overlapped with state update).
1b314be4feb2 [mq]: latest
jlaskey
parents: 57684
diff changeset
   332
        final long result = RandomSupport.mixLea64(s + x0);
1b314be4feb2 [mq]: latest
jlaskey
parents: 57684
diff changeset
   333
	// Update the LCG subgenerator
1b314be4feb2 [mq]: latest
jlaskey
parents: 57684
diff changeset
   334
        s = M * s + a;
1b314be4feb2 [mq]: latest
jlaskey
parents: 57684
diff changeset
   335
	// Update the Xorshift subgenerator
57437
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
   336
        long q0 = x0, q1 = x1, q2 = x2, q3 = x3;
57684
7cb325557832 imported patch comments
jlaskey
parents: 57547
diff changeset
   337
        {   // xoshiro256 1.0
7cb325557832 imported patch comments
jlaskey
parents: 57547
diff changeset
   338
            long t = q1 << 17;
7cb325557832 imported patch comments
jlaskey
parents: 57547
diff changeset
   339
            q2 ^= q0;
7cb325557832 imported patch comments
jlaskey
parents: 57547
diff changeset
   340
            q3 ^= q1;
7cb325557832 imported patch comments
jlaskey
parents: 57547
diff changeset
   341
            q1 ^= q2;
7cb325557832 imported patch comments
jlaskey
parents: 57547
diff changeset
   342
            q0 ^= q3;
7cb325557832 imported patch comments
jlaskey
parents: 57547
diff changeset
   343
            q2 ^= t;
7cb325557832 imported patch comments
jlaskey
parents: 57547
diff changeset
   344
            q3 = Long.rotateLeft(q3, 45);
7cb325557832 imported patch comments
jlaskey
parents: 57547
diff changeset
   345
        }
57437
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
   346
        x0 = q0; x1 = q1; x2 = q2; x3 = q3;
59080
1b314be4feb2 [mq]: latest
jlaskey
parents: 57684
diff changeset
   347
        return result;
57388
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   348
    }
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   349
59080
1b314be4feb2 [mq]: latest
jlaskey
parents: 57684
diff changeset
   350
    /**
1b314be4feb2 [mq]: latest
jlaskey
parents: 57684
diff changeset
   351
     * Returns the period of this random generator.
1b314be4feb2 [mq]: latest
jlaskey
parents: 57684
diff changeset
   352
     *
1b314be4feb2 [mq]: latest
jlaskey
parents: 57684
diff changeset
   353
     * @return a {@link BigInteger} whose value is the number of distinct possible states of this
1b314be4feb2 [mq]: latest
jlaskey
parents: 57684
diff changeset
   354
     *         {@link RandomGenerator} object (2<sup>64</sup>(2<sup>256</sup>-1)).
1b314be4feb2 [mq]: latest
jlaskey
parents: 57684
diff changeset
   355
     */
57437
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
   356
    public BigInteger period() {
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
   357
        return PERIOD;
f02ffcb61dce Rename Rng.java to RandomNumberGenerator.java, clean up javadoc and misc code changes
jlaskey
parents: 57436
diff changeset
   358
    }
57388
b1e6bc96af3d Initial commit of new RNG code from GLS
briangoetz
parents:
diff changeset
   359
}