src/java.base/share/classes/java/util/random/Xoshiro256StarStar.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.LeapableGenerator;
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    31
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    32
/**
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    33
 * A generator of uniform pseudorandom values applicable for use in
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    34
 * (among other contexts) isolated parallel computations that may
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    35
 * generate subtasks.  Class {@link Xoshiro256StarStar} implements
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    36
 * interfaces {@link RandomGenerator} and {@link LeapableGenerator},
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    37
 * and therefore supports methods for producing pseudorandomly chosen
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    38
 * numbers of type {@code int}, {@code long}, {@code float}, and {@code double}
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    39
 * as well as creating new {@link Xoshiro256StarStar} objects
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    40
 * by "jumping" or "leaping".
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    41
 * <p>
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    42
 * Series of generated values pass the TestU01 BigCrush and PractRand test suites
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    43
 * that measure independence and uniformity properties of random number generators.
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    44
 * (Most recently validated with
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    45
 * <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
    46
 * and <a href="http://pracrand.sourceforge.net">version 0.90 of PractRand</a>.
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    47
 * Note that TestU01 BigCrush was used to test not only values produced by the {@code nextLong()}
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    48
 * method but also the result of bit-reversing each value produced by {@code nextLong()}.)
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    49
 * These tests validate only the methods for certain
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    50
 * types and ranges, but similar properties are expected to hold, at
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    51
 * least approximately, for others as well.
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    52
 * <p>
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    53
 * The class {@link Xoshiro256StarStar} uses the {@code xoshiro256} algorithm,
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    54
 * version 1.0 (parameters 17, 45), with the "**" scrambler (a mixing function).
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    55
 * Its state consists of four {@code long} fields {@code x0}, {@code x1}, {@code x2},
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    56
 * and {@code x3}, which can take on any values provided that they are not all zero.
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    57
 * The period of this generator is 2<sup>256</sup>-1.
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    58
 * <p>
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    59
 * The 64-bit values produced by the {@code nextLong()} method are equidistributed.
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    60
 * To be precise, over the course of the cycle of length 2<sup>256</sup>-1,
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    61
 * each nonzero {@code long} value is generated 2<sup>192</sup> times,
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    62
 * but the value 0 is generated only 2<sup>192</sup>-1 times.
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    63
 * The values produced by the {@code nextInt()}, {@code nextFloat()}, and {@code nextDouble()}
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    64
 * methods are likewise equidistributed.
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    65
 * <p>
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    66
 * In fact, the 64-bit values produced by the {@code nextLong()} method are 4-equidistributed.
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    67
 * To be precise: consider the (overlapping) length-4 subsequences of the cycle of 64-bit
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    68
 * values produced by {@code nextLong()} (assuming no other methods are called that would
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    69
 * affect the state).  There are 2<sup>256</sup>-1 such subsequences, and each subsequence,
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    70
 * which consists of 4 64-bit values, can have one of 2<sup>256</sup> values.  Of those
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    71
 * 2<sup>256</sup> subsequence values, each one is generated exactly once over the course
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    72
 * of the entire cycle, except that the subsequence (0, 0, 0, 0) never appears.
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    73
 * The values produced by the {@code nextInt()}, {@code nextFloat()}, and {@code nextDouble()}
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    74
 * methods are likewise 4-equidistributed, but note that that the subsequence (0, 0, 0, 0)
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    75
 * can also appear (but occurring somewhat less frequently than all other subsequences),
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    76
 * because the values produced by those methods have fewer than 64 randomly chosen bits.
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    77
 * <p>
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    78
 * Instances {@link Xoshiro256StarStar} are <em>not</em> thread-safe.
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    79
 * They are designed to be used so that each thread as its own instance.
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    80
 * The methods {@link #jump} and {@link #leap} and {@link #jumps} and {@link #leaps}
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    81
 * can be used to construct new instances of {@link Xoshiro256StarStar} that traverse
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    82
 * other parts of the state cycle.
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    83
 * <p>
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    84
 * Instances of {@link Xoshiro256StarStar} are not cryptographically
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    85
 * secure.  Consider instead using {@link java.security.SecureRandom}
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    86
 * in security-sensitive applications. Additionally,
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    87
 * default-constructed instances do not use a cryptographically random
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    88
 * seed unless the {@linkplain System#getProperty system property}
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    89
 * {@code java.util.secureRandomSeed} is set to {@code true}.
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    90
 *
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    91
 * @since 14
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    92
 */
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    93
public final class Xoshiro256StarStar implements LeapableGenerator {
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    94
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    95
    /*
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    96
     * Implementation Overview.
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    97
     *
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    98
     * This is an implementation of the xoroshiro128** algorithm written
da026c172c1e add missing files
jlaskey
parents:
diff changeset
    99
     * in 2018 by David Blackman and Sebastiano Vigna (vigna@acm.org).
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   100
     * See http://xoshiro.di.unimi.it and these two papers:
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   101
     *
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   102
     *    Sebastiano Vigna. 2016. An Experimental Exploration of Marsaglia's
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   103
     *    xorshift Generators, Scrambled. ACM Transactions on Mathematical
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   104
     *    Software 42, 4, Article 30 (June 2016), 23 pages.
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   105
     *    https://doi.org/10.1145/2845077
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   106
     *
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   107
     *    David Blackman and Sebastiano Vigna.  2018.  Scrambled Linear
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   108
     *    Pseudorandom Number Generators.  Computing Research Repository (CoRR).
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   109
     *    http://arxiv.org/abs/1805.01407
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   110
     *
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   111
     * The jump operation moves the current generator forward by 2*128
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   112
     * steps; this has the same effect as calling nextLong() 2**128
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   113
     * times, but is much faster.  Similarly, the leap operation moves
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   114
     * the current generator forward by 2*192 steps; this has the same
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   115
     * effect as calling nextLong() 2**192 times, but is much faster.
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   116
     * The copy method may be used to make a copy of the current
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   117
     * generator.  Thus one may repeatedly and cumulatively copy and
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   118
     * jump to produce a sequence of generators whose states are well
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   119
     * spaced apart along the overall state cycle (indeed, the jumps()
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   120
     * and leaps() methods each produce a stream of such generators).
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   121
     * The generators can then be parceled out to other threads.
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   122
     *
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   123
     * File organization: First static fields, then instance
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   124
     * fields, then constructors, then instance methods.
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   125
     */
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   126
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   127
    /* ---------------- static fields ---------------- */
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   128
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   129
    /**
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   130
     * The seed generator for default constructors.
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   131
     */
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   132
    private static final AtomicLong DEFAULT_GEN = new AtomicLong(RandomSupport.initialSeed());
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   133
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   134
    /*
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   135
     * The period of this generator, which is 2**256 - 1.
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   136
     */
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   137
    private static final BigInteger PERIOD =
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   138
        BigInteger.ONE.shiftLeft(256).subtract(BigInteger.ONE);
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   139
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   140
    /* ---------------- instance fields ---------------- */
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   141
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   142
    /**
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   143
     * The per-instance state.
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   144
     * At least one of the four fields x0, x1, x2, and x3 must be nonzero.
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   145
     */
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   146
    private long x0, x1, x2, x3;
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   147
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   148
    /* ---------------- constructors ---------------- */
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   149
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   150
    /**
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   151
     * Basic constructor that initializes all fields from parameters.
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   152
     * It then adjusts the field values if necessary to ensure that
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   153
     * all constraints on the values of fields are met.
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   154
     *
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   155
     * @param x0 first word of the initial state
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   156
     * @param x1 second word of the initial state
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   157
     * @param x2 third word of the initial state
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   158
     * @param x3 fourth word of the initial state
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   159
     */
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   160
    public Xoshiro256StarStar(long x0, long x1, long x2, long x3) {
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   161
        this.x0 = x0;
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   162
        this.x1 = x1;
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   163
        this.x2 = x2;
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   164
        this.x3 = x3;
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   165
        // If x0, x1, x2, and x3 are all zero, we must choose nonzero values.
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   166
        if ((x0 | x1 | x2 | x3) == 0) {
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   167
            // At least three of the four values generated here will be nonzero.
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   168
            this.x0 = RandomSupport.mixStafford13(x0 += RandomSupport.GOLDEN_RATIO_64);
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   169
            this.x1 = (x0 += RandomSupport.GOLDEN_RATIO_64);
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   170
            this.x2 = (x0 += RandomSupport.GOLDEN_RATIO_64);
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   171
            this.x3 = (x0 += RandomSupport.GOLDEN_RATIO_64);
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
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   175
    /**
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   176
     * Creates a new instance of {@link Xoshiro256StarStar} using the
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   177
     * specified {@code long} value as the initial seed. Instances of
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   178
     * {@link Xoshiro256StarStar} created with the same seed in the same
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   179
     * program generate identical sequences of values.
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   180
     *
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   181
     * @param seed the initial seed
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   182
     */
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   183
    public Xoshiro256StarStar(long seed) {
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   184
        // Using a value with irregularly spaced 1-bits to xor the seed
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   185
        // argument tends to improve "pedestrian" seeds such as 0 or
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   186
        // other small integers.  We may as well use SILVER_RATIO_64.
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   187
        //
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   188
        // The x values are then filled in as if by a SplitMix PRNG with
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   189
        // GOLDEN_RATIO_64 as the gamma value and Stafford13 as the mixer.
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   190
        this(RandomSupport.mixStafford13(seed ^= RandomSupport.SILVER_RATIO_64),
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   191
             RandomSupport.mixStafford13(seed += RandomSupport.GOLDEN_RATIO_64),
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   192
             RandomSupport.mixStafford13(seed += RandomSupport.GOLDEN_RATIO_64),
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   193
             RandomSupport.mixStafford13(seed + RandomSupport.GOLDEN_RATIO_64));
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   194
    }
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
     * Creates a new instance of {@link Xoshiro256StarStar} that is likely to
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   198
     * generate sequences of values that are statistically independent
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   199
     * of those of any other instances in the current program execution,
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   200
     * but may, and typically does, vary across program invocations.
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   201
     */
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   202
    public Xoshiro256StarStar() {
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   203
        // Using GOLDEN_RATIO_64 here gives us a good Weyl sequence of values.
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   204
        this(DEFAULT_GEN.getAndAdd(RandomSupport.GOLDEN_RATIO_64));
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   205
    }
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
     * Creates a new instance of {@link Xoshiro256StarStar} using the specified array of
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   209
     * initial seed bytes. Instances of {@link Xoshiro256StarStar} created with the same
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   210
     * seed array in the same program execution generate identical sequences of values.
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   211
     *
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   212
     * @param seed the initial seed
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   213
     */
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   214
    public Xoshiro256StarStar(byte[] seed) {
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   215
        // Convert the seed to 4 long values, which are not all zero.
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   216
        long[] data = RandomSupport.convertSeedBytesToLongs(seed, 4, 4);
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   217
        long x0 = data[0], x1 = data[1], x2 = data[2], x3 = data[3];
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   218
        this.x0 = x0;
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   219
        this.x1 = x1;
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   220
        this.x2 = x2;
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   221
        this.x3 = x3;
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   222
    }
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   223
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   224
    /* ---------------- public methods ---------------- */
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   225
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   226
    public Xoshiro256StarStar copy() {
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   227
        return new Xoshiro256StarStar(x0, x1, x2, x3);
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   228
    }
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   229
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   230
    /**
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   231
     * Returns a pseudorandom {@code long} value.
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   232
     *
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   233
     * @return a pseudorandom {@code long} value
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   234
     */
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   235
   public long nextLong() {
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   236
       // Compute the result based on current state information
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   237
       // (this allows the computation to be overlapped with state update).
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   238
       final long result = Long.rotateLeft(x0 * 5, 7) * 9;  // "starstar" mixing function
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   239
       
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   240
       long q0 = x0, q1 = x1, q2 = x2, q3 = x3;
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   241
       {   // xoshiro256 1.0
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   242
           long t = q1 << 17;
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   243
           q2 ^= q0;
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   244
           q3 ^= q1;
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   245
           q1 ^= q2;
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   246
           q0 ^= q3;
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   247
           q2 ^= t;
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   248
           q3 = Long.rotateLeft(q3, 45);
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   249
       }
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   250
        x0 = q0; x1 = q1; x2 = q2; x3 = q3;
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   251
        return result;
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   252
    }
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   253
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   254
    public BigInteger period() {
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   255
        return PERIOD;
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   256
    }
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   257
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   258
    public double defaultJumpDistance() {
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   259
        return 0x1.0p64;
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   260
    }
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   261
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   262
    public double defaultLeapDistance() {
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   263
        return 0x1.0p96;
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   264
    }
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   265
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   266
    private static final long[] JUMP_TABLE = {
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   267
        0x180ec6d33cfd0abaL, 0xd5a61266f0c9392cL, 0xa9582618e03fc9aaL, 0x39abdc4529b1661cL };
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   268
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   269
    private static final long[] LEAP_TABLE = {
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   270
        0x76e15d3efefdcbbfL, 0xc5004e441c522fb3L, 0x77710069854ee241L, 0x39109bb02acbe635L };
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   271
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   272
    /**
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   273
     * This is the jump function for the generator. It is equivalent to 2**128 calls to next(); it
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   274
     * can be used to generate 2**128 non-overlapping subsequences for parallel computations.
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   275
     */
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   276
    public void jump() {
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   277
        jumpAlgorithm(JUMP_TABLE);
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   278
    }
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   279
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   280
    /**
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   281
     * This is the long-jump function for the generator. It is equivalent to 2**192 calls to next();
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   282
     * it can be used to generate 2**64 starting points, from each of which jump() will generate
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   283
     * 2**64 non-overlapping subsequences for parallel distributed computations.
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   284
     */
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   285
    public void leap() {
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   286
        jumpAlgorithm(LEAP_TABLE);
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   287
    }
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   288
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   289
    private void jumpAlgorithm(long[] table) {
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   290
        long s0 = 0, s1 = 0, s2 = 0, s3 = 0;
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   291
        for (int i = 0; i < table.length; i++) {
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   292
            for (int b = 0; b < 64; b++) {
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   293
                if ((table[i] & (1L << b)) != 0) {
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   294
                    s0 ^= x0;
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   295
                    s1 ^= x1;
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   296
                    s2 ^= x2;
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   297
                    s3 ^= x3;
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   298
                }
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   299
                nextLong();
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   300
            }
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   301
            x0 = s0;
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   302
            x1 = s1;
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   303
            x2 = s2;
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   304
            x3 = s3;
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   305
        }
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   306
    }
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   307
da026c172c1e add missing files
jlaskey
parents:
diff changeset
   308
}