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