newrandom/Xoroshiro128Plus.java
author briangoetz
Thu, 23 May 2019 16:45:56 -0400
branchbriangoetz-test-branch
changeset 57369 6d87e9f7a1ec
permissions -rwxr-xr-x
Initial comment in newrandom/
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
57369
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
     1
/*
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
     2
 * Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
     3
 * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
     4
 *
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
     5
 *
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
     6
 *
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
     7
 *
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
     8
 *
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
     9
 *
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    10
 *
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    11
 *
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    12
 *
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    13
 *
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    14
 *
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    15
 *
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    16
 *
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    17
 *
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    18
 *
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    19
 *
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    20
 *
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    21
 *
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    22
 *
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    23
 *
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    24
 */
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    25
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    26
// package java.util;
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    27
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    28
import java.math.BigInteger;
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    29
import java.util.concurrent.atomic.AtomicLong;
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    30
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    31
/**
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    32
 * A generator of uniform pseudorandom values applicable for use in
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    33
 * (among other contexts) isolated parallel computations that may
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    34
 * generate subtasks.  Class {@code Xoroshiro128Plus} implements
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    35
 * interfaces {@link java.util.Rng} and {@link java.util.LeapableRng},
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    36
 * and therefore supports methods for producing pseudorandomly chosen
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    37
 * numbers of type {@code int}, {@code long}, {@code float}, and {@code double}
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    38
 * as well as creating new {@code Xoroshiro128Plus} objects
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    39
 * by "jumping" or "leaping".
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    40
 *
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    41
 * <p>Series of generated values pass the TestU01 BigCrush and PractRand test suites
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    42
 * that measure independence and uniformity properties of random number generators,
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    43
 * <em>except</em> that it does not pass the binary rank tests of PractRand,
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    44
 * which fail due to the lowest bit being an LFSR; all other bits pass all tests.
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    45
 * For this reason may be best for some purposes to use this generator to generate
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    46
 * pseudorandom {@code int}, {@code float}, and {@code double} values but not
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    47
 * {@code long} values.  For the same reason, it may be best not to use the
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    48
 * method {@code nextGaussian} or {@code nextExponential} with this generator.
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    49
 *
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    50
 * <p>The class {@code Xoroshiro128Plus} uses the {@code xoroshiro128} algorithm,
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    51
 * version 1.0 (parameters 24, 16, 37), with the "+" scrambler
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    52
 * (the returned value is the sum of the two state variables {@code x0} and {@code x1}).
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    53
 * Its state consists of two {@code long} fields {@code x0} and {@code x1},
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    54
 * which can take on any values provided that they are not both zero.
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    55
 * The period of this generator is 2<sup>128</sup>-1.
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    56
 *
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    57
 * <p>The 64-bit values produced by the {@code nextLong()} method are equidistributed.
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    58
 * To be precise, over the course of the cycle of length 2<sup>128</sup>-1,
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    59
 * each nonzero {@code long} value is generated 2<sup>64</sup> times,
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    60
 * but the value 0 is generated only 2<sup>64</sup>-1 times.
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    61
 * The values produced by the {@code nextInt()}, {@code nextFloat()}, and {@code nextDouble()}
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    62
 * methods are likewise equidistributed.
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    63
 *
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    64
 * <p>Instances {@code Xoroshiro128Plus} are <em>not</em> thread-safe.
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    65
 * They are designed to be used so that each thread as its own instance.
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    66
 * The methods {@link #jump} and {@link #leap} and {@link #jumps} and {@link #leaps}
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    67
 * can be used to construct new instances of {@code Xoroshiro128Plus} that traverse
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    68
 * other parts of the state cycle.
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    69
 *
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    70
 * <p>Instances of {@code Xoroshiro128Plus} are not cryptographically
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    71
 * secure.  Consider instead using {@link java.security.SecureRandom}
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    72
 * in security-sensitive applications. Additionally,
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    73
 * default-constructed instances do not use a cryptographically random
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    74
 * seed unless the {@linkplain System#getProperty system property}
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    75
 * {@code java.util.secureRandomSeed} is set to {@code true}.
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    76
 *
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    77
 * @author  Guy Steele
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    78
 * @author  Doug Lea
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    79
 * @since   1.8
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    80
 */
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    81
public final class Xoroshiro128Plus implements LeapableRng {
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    82
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    83
    /*
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    84
     * Implementation Overview.
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    85
     *
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    86
     * This is an implementation of the xoroshiro128+ algorithm written
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    87
     * in 2016 by David Blackman and Sebastiano Vigna (vigna@acm.org),
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    88
     * and updated with improved parameters in 2018.
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    89
     * See http://xoshiro.di.unimi.it and these two papers:
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    90
     *
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    91
     *    Sebastiano Vigna. 2016. An Experimental Exploration of Marsaglia's
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    92
     *    xorshift Generators, Scrambled. ACM Transactions on Mathematical
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    93
     *    Software 42, 4, Article 30 (June 2016), 23 pages.
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    94
     *    https://doi.org/10.1145/2845077
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    95
     *
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    96
     *    David Blackman and Sebastiano Vigna.  2018.  Scrambled Linear
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    97
     *    Pseudorandom Number Generators.  Computing Research Repository (CoRR).
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    98
     *    http://arxiv.org/abs/1805.01407
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
    99
     *
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   100
     * The jump operation moves the current generator forward by 2*64
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   101
     * steps; this has the same effect as calling nextLong() 2**64
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   102
     * times, but is much faster.  Similarly, the leap operation moves
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   103
     * the current generator forward by 2*96 steps; this has the same
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   104
     * effect as calling nextLong() 2**96 times, but is much faster.
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   105
     * The copy method may be used to make a copy of the current
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   106
     * generator.  Thus one may repeatedly and cumulatively copy and
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   107
     * jump to produce a sequence of generators whose states are well
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   108
     * spaced apart along the overall state cycle (indeed, the jumps()
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   109
     * and leaps() methods each produce a stream of such generators).
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   110
     * The generators can then be parceled out to other threads.
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   111
     *
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   112
     * File organization: First the non-public methods that constitute the
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   113
     * main algorithm, then the public methods.  Note that many methods are
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   114
     * defined by classes {@code AbstractJumpableRng} and {@code AbstractRng}.
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   115
     */
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   116
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   117
    /* ---------------- static fields ---------------- */
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   118
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   119
    /**
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   120
     * The seed generator for default constructors.
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   121
     */
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   122
    private static final AtomicLong defaultGen = new AtomicLong(RngSupport.initialSeed());
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   123
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   124
    /*
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   125
     * The period of this generator, which is 2**128 - 1.
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   126
     */
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   127
    private static final BigInteger thePeriod =
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   128
	BigInteger.ONE.shiftLeft(128).subtract(BigInteger.ONE);
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   129
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   130
    /* ---------------- instance fields ---------------- */
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   131
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   132
    /**
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   133
     * The per-instance state.
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   134
     * At least one of the two fields x0 and x1 must be nonzero.
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   135
     */
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   136
    private long x0, x1;
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   137
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   138
    /* ---------------- constructors ---------------- */
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   139
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   140
    /**
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   141
     * Basic constructor that initializes all fields from parameters.
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   142
     * It then adjusts the field values if necessary to ensure that
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   143
     * all constraints on the values of fields are met.
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   144
     */
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   145
    public Xoroshiro128Plus(long x0, long x1) {
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   146
	this.x0 = x0;
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   147
        this.x1 = x1;
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   148
	// If x0 and x1 are both zero, we must choose nonzero values.
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   149
        if ((x0 | x1) == 0) {
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   150
	    // At least one of the two values generated here will be nonzero.
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   151
	    this.x0 = RngSupport.mixStafford13(x0 += RngSupport.GOLDEN_RATIO_64);
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   152
	    this.x1 = (x0 += RngSupport.GOLDEN_RATIO_64);
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   153
	}
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   154
    }
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   155
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   156
    /**
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   157
     * Creates a new instance of {@code Xoroshiro128Plus} using the
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   158
     * specified {@code long} value as the initial seed. Instances of
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   159
     * {@code Xoroshiro128Plus} created with the same seed in the same
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   160
     * program generate identical sequences of values.
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   161
     *
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   162
     * @param seed the initial seed
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   163
     */
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   164
    public Xoroshiro128Plus(long seed) {
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   165
	// Using a value with irregularly spaced 1-bits to xor the seed
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   166
	// argument tends to improve "pedestrian" seeds such as 0 or
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   167
	// other small integers.  We may as well use SILVER_RATIO_64.
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   168
	//
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   169
	// The x values are then filled in as if by a SplitMix PRNG with
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   170
	// GOLDEN_RATIO_64 as the gamma value and Stafford13 as the mixer.
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   171
        this(RngSupport.mixStafford13(seed ^= RngSupport.SILVER_RATIO_64),
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   172
	     RngSupport.mixStafford13(seed + RngSupport.GOLDEN_RATIO_64));
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   173
    }
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   174
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   175
    /**
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   176
     * Creates a new instance of {@code Xoroshiro128Plus} that is likely to
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   177
     * generate sequences of values that are statistically independent
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   178
     * of those of any other instances in the current program execution,
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   179
     * but may, and typically does, vary across program invocations.
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   180
     */
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   181
    public Xoroshiro128Plus() {
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   182
	// Using GOLDEN_RATIO_64 here gives us a good Weyl sequence of values.
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   183
        this(defaultGen.getAndAdd(RngSupport.GOLDEN_RATIO_64));
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   184
    }
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   185
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   186
    /**
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   187
     * Creates a new instance of {@code Xoroshiro128Plus} using the specified array of
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   188
     * initial seed bytes. Instances of {@code Xoroshiro128Plus} created with the same
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   189
     * seed array in the same program execution generate identical sequences of values.
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   190
     *
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   191
     * @param seed the initial seed
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   192
     */
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   193
    public Xoroshiro128Plus(byte[] seed) {
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   194
	// Convert the seed to 2 long values, which are not both zero.
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   195
	long[] data = RngSupport.convertSeedBytesToLongs(seed, 2, 2);
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   196
	long x0 = data[0], x1 = data[1];
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   197
        this.x0 = x0;
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   198
        this.x1 = x1;
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   199
    }
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   200
    
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   201
    /* ---------------- public methods ---------------- */
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   202
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   203
    public Xoroshiro128Plus copy() { return new Xoroshiro128Plus(x0, x1); }
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   204
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   205
/*  
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   206
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   207
To the extent possible under law, the author has dedicated all copyright
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   208
and related and neighboring rights to this software to the public domain
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   209
worldwide. This software is distributed without any warranty.
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   210
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   211
See <http://creativecommons.org/publicdomain/zero/1.0/>. */
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   212
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   213
/* This is the successor to xorshift128+. It is the fastest full-period
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   214
   generator passing BigCrush without systematic failures, but due to the
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   215
   relatively short period it is acceptable only for applications with a
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   216
   mild amount of parallelism; otherwise, use a xorshift1024* generator.
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   217
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   218
   Beside passing BigCrush, this generator passes the PractRand test suite
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   219
   up to (and included) 16TB, with the exception of binary rank tests,
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   220
   which fail due to the lowest bit being an LFSR; all other bits pass all
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   221
   tests. We suggest to use a sign test to extract a random Boolean value.
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   222
   
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   223
   Note that the generator uses a simulated rotate operation, which most C
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   224
   compilers will turn into a single instruction. In Java, you can use
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   225
   Long.rotateLeft(). In languages that do not make low-level rotation
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   226
   instructions accessible xorshift128+ could be faster.
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   227
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   228
   The state must be seeded so that it is not everywhere zero. If you have
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   229
   a 64-bit seed, we suggest to seed a splitmix64 generator and use its
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   230
   output to fill s. */
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   231
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   232
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   233
    /**
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   234
     * Returns a pseudorandom {@code long} value.
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   235
     *
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   236
     * @return a pseudorandom {@code long} value
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   237
     */
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   238
    public long nextLong() {
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   239
	final long s0 = x0;
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   240
	long s1 = x1;
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   241
	final long z = s0 + s1;
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   242
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   243
	s1 ^= s0;
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   244
	x0 = Long.rotateLeft(s0, 24) ^ s1 ^ (s1 << 16); // a, b
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   245
	x1 = Long.rotateLeft(s1, 37); // c
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   246
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   247
	return z;
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   248
    }
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   249
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   250
    public BigInteger period() { return thePeriod; }
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   251
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   252
    public double defaultJumpDistance() { return 0x1.0p64; }
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   253
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   254
    public double defaultLeapDistance() { return 0x1.0p96; }
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   255
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   256
    private static final long[] JUMP_TABLE = { 0xdf900294d8f554a5L, 0x170865df4b3201fcL };
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   257
    
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   258
    private static final long[] LEAP_TABLE = { 0xd2a98b26625eee7bL, 0xdddf9b1090aa7ac1L };
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   259
   
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   260
/* This is the jump function for the generator. It is equivalent
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   261
   to 2**64 calls to nextLong(); it can be used to generate 2**64
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   262
   non-overlapping subsequences for parallel computations. */
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   263
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   264
    public void jump() { jumpAlgorithm(JUMP_TABLE); }
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   265
    
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   266
/* This is the long-jump function for the generator. It is equivalent to
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   267
   2**96 calls to next(); it can be used to generate 2**32 starting points,
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   268
   from each of which jump() will generate 2**32 non-overlapping
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   269
   subsequences for parallel distributed computations. */
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   270
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   271
    public void leap() { jumpAlgorithm(LEAP_TABLE); }
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   272
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   273
    private void jumpAlgorithm(long[] table) {
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   274
	long s0 = 0, s1 = 0;
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   275
	for (int i = 0; i < table.length; i++) {
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   276
	    for (int b = 0; b < 64; b++) {
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   277
		if ((table[i] & (1L << b)) != 0) {
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   278
		    s0 ^= x0;
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   279
		    s1 ^= x1;
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   280
		}
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   281
		nextLong();
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   282
	    }
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   283
	    x0 = s0;
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   284
	    x1 = s1;
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   285
	}
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   286
    }
6d87e9f7a1ec Initial comment in newrandom/
briangoetz
parents:
diff changeset
   287
}