| 1 | 
// MersenneTwister.h | 
| 2 | 
// Mersenne Twister random number generator -- a C++ class MTRand | 
| 3 | 
// Based on code by Makoto Matsumoto, Takuji Nishimura, and Shawn Cokus | 
| 4 | 
// Richard J. Wagner  v1.0  15 May 2003  rjwagner@writeme.com | 
| 5 | 
 | 
| 6 | 
// The Mersenne Twister is an algorithm for generating random numbers.  It | 
| 7 | 
// was designed with consideration of the flaws in various other generators. | 
| 8 | 
// The period, 2^19937-1, and the order of equidistribution, 623 dimensions, | 
| 9 | 
// are far greater.  The generator is also fast; it avoids multiplication and | 
| 10 | 
// division, and it benefits from caches and pipelines.  For more information | 
| 11 | 
// see the inventors' web page at http://www.math.keio.ac.jp/~matumoto/emt.html | 
| 12 | 
 | 
| 13 | 
// Reference | 
| 14 | 
// M. Matsumoto and T. Nishimura, "Mersenne Twister: A 623-Dimensionally | 
| 15 | 
// Equidistributed Uniform Pseudo-Random Number Generator", ACM Transactions on | 
| 16 | 
// Modeling and Computer Simulation, Vol. 8, No. 1, January 1998, pp 3-30. | 
| 17 | 
 | 
| 18 | 
// Copyright (C) 1997 - 2002, Makoto Matsumoto and Takuji Nishimura, | 
| 19 | 
// Copyright (C) 2000 - 2003, Richard J. Wagner | 
| 20 | 
// All rights reserved.                           | 
| 21 | 
// | 
| 22 | 
// Redistribution and use in source and binary forms, with or without | 
| 23 | 
// modification, are permitted provided that the following conditions | 
| 24 | 
// are met: | 
| 25 | 
// | 
| 26 | 
//   1. Redistributions of source code must retain the above copyright | 
| 27 | 
//      notice, this list of conditions and the following disclaimer. | 
| 28 | 
// | 
| 29 | 
//   2. Redistributions in binary form must reproduce the above copyright | 
| 30 | 
//      notice, this list of conditions and the following disclaimer in the | 
| 31 | 
//      documentation and/or other materials provided with the distribution. | 
| 32 | 
// | 
| 33 | 
//   3. The names of its contributors may not be used to endorse or promote  | 
| 34 | 
//      products derived from this software without specific prior written  | 
| 35 | 
//      permission. | 
| 36 | 
// | 
| 37 | 
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | 
| 38 | 
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | 
| 39 | 
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | 
| 40 | 
// A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR | 
| 41 | 
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, | 
| 42 | 
// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | 
| 43 | 
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR | 
| 44 | 
// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF | 
| 45 | 
// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | 
| 46 | 
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | 
| 47 | 
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 
| 48 | 
 | 
| 49 | 
// The original code included the following notice: | 
| 50 | 
// | 
| 51 | 
//     When you use this, send an email to: matumoto@math.keio.ac.jp | 
| 52 | 
//     with an appropriate reference to your work. | 
| 53 | 
// | 
| 54 | 
// It would be nice to CC: rjwagner@writeme.com and Cokus@math.washington.edu | 
| 55 | 
// when you write. | 
| 56 | 
 | 
| 57 | 
#ifndef MERSENNETWISTER_H | 
| 58 | 
#define MERSENNETWISTER_H | 
| 59 | 
 | 
| 60 | 
// Not thread safe (unless auto-initialization is avoided and each thread has | 
| 61 | 
// its own MTRand object) | 
| 62 | 
 | 
| 63 | 
#include <cassert> | 
| 64 | 
#include <iostream> | 
| 65 | 
#include <limits.h> | 
| 66 | 
#include <stdio.h> | 
| 67 | 
#include <time.h> | 
| 68 | 
#include <math.h> | 
| 69 | 
#include <vector> | 
| 70 | 
namespace OpenMD { | 
| 71 | 
 | 
| 72 | 
  class MTRand { | 
| 73 | 
    // Data | 
| 74 | 
  public: | 
| 75 | 
    typedef unsigned long uint32;  // unsigned integer type, at least 32 bits | 
| 76 | 
         | 
| 77 | 
    enum { N = 624 };       // length of state vector | 
| 78 | 
    enum { SAVE = N + 1 };  // length of array for save() | 
| 79 | 
 | 
| 80 | 
  private: | 
| 81 | 
    enum { M = 397 };  // period parameter | 
| 82 | 
         | 
| 83 | 
    uint32 state[N];   // internal state | 
| 84 | 
    uint32 *pNext;     // next value to get from state | 
| 85 | 
    int left;          // number of values left before reload needed | 
| 86 | 
    int nstrides_; | 
| 87 | 
    int stride_; | 
| 88 | 
 | 
| 89 | 
    //Methods | 
| 90 | 
  public: | 
| 91 | 
    MTRand( const uint32& oneSeed, int nstrides, int stride);  // initialize with a simple uint32 | 
| 92 | 
    MTRand( uint32 *const bigSeed, uint32 const seedLength, int nstrides, int stride);  // or an array | 
| 93 | 
    MTRand(int nstrides, int stride);  // auto-initialize with /dev/urandom or time() and clock() | 
| 94 | 
         | 
| 95 | 
    // Do NOT use for CRYPTOGRAPHY without securely hashing several returned | 
| 96 | 
    // values together, otherwise the generator state can be learned after | 
| 97 | 
    // reading 624 consecutive values. | 
| 98 | 
         | 
| 99 | 
    // Access to 32-bit random numbers | 
| 100 | 
    RealType rand();                          // real number in [0,1] | 
| 101 | 
    RealType rand( const RealType& n );         // real number in [0,n] | 
| 102 | 
    RealType randExc();                       // real number in [0,1) | 
| 103 | 
    RealType randExc( const RealType& n );      // real number in [0,n) | 
| 104 | 
    RealType randDblExc();                    // real number in (0,1) | 
| 105 | 
    RealType randDblExc( const RealType& n );   // real number in (0,n) | 
| 106 | 
    uint32 randInt();                       // integer in [0,2^32-1] (modified for striding) | 
| 107 | 
    uint32 rawRandInt();                    // original randInt | 
| 108 | 
    uint32 randInt( const uint32& n );      // integer in [0,n] for n < 2^32 | 
| 109 | 
    RealType operator()() { return rand(); }  // same as rand() | 
| 110 | 
         | 
| 111 | 
    // Access to 53-bit random numbers (capacity of IEEE RealType precision) | 
| 112 | 
    RealType rand53();  // real number in [0,1) | 
| 113 | 
         | 
| 114 | 
    // Access to nonuniform random number distributions | 
| 115 | 
    RealType randNorm( const RealType mean = 0.0, const RealType variance = 0.0 ); | 
| 116 | 
         | 
| 117 | 
    // Re-seeding functions with same behavior as initializers | 
| 118 | 
    void seed( const uint32 oneSeed ); | 
| 119 | 
    void seed( uint32 *const bigSeed, const uint32 seedLength = N ); | 
| 120 | 
    void seed(); | 
| 121 | 
 | 
| 122 | 
    std::vector<uint32>generateSeeds();  | 
| 123 | 
         | 
| 124 | 
    // Saving and loading generator state | 
| 125 | 
    void save( uint32* saveArray ) const;  // to array of size SAVE | 
| 126 | 
    void load( uint32 *const loadArray );  // from such array | 
| 127 | 
    friend std::ostream& operator<<( std::ostream& os, const MTRand& mtrand ); | 
| 128 | 
    friend std::istream& operator>>( std::istream& is, MTRand& mtrand ); | 
| 129 | 
 | 
| 130 | 
  protected: | 
| 131 | 
    void initialize( const uint32 oneSeed ); | 
| 132 | 
    void reload(); | 
| 133 | 
    uint32 hiBit( const uint32& u ) const { return u & 0x80000000UL; } | 
| 134 | 
    uint32 loBit( const uint32& u ) const { return u & 0x00000001UL; } | 
| 135 | 
    uint32 loBits( const uint32& u ) const { return u & 0x7fffffffUL; } | 
| 136 | 
    uint32 mixBits( const uint32& u, const uint32& v ) const | 
| 137 | 
    { return hiBit(u) | loBits(v); } | 
| 138 | 
#ifdef _MSC_VER | 
| 139 | 
#pragma warning( push ) // save current warning settings | 
| 140 | 
#pragma warning( disable : 4146 ) // warning C4146: unary minus operator applied to unsigned type, result still unsigned | 
| 141 | 
#endif | 
| 142 | 
    uint32 twist( const uint32& m, const uint32& s0, const uint32& s1 ) const | 
| 143 | 
    { return m ^ (mixBits(s0,s1)>>1) ^ (-loBit(s1) & 0x9908b0dfUL); } | 
| 144 | 
#ifdef _MSC_VER | 
| 145 | 
#pragma warning( pop ) // return warning settings to what they were | 
| 146 | 
#endif | 
| 147 | 
 | 
| 148 | 
    static uint32 hash( time_t t, clock_t c ); | 
| 149 | 
  }; | 
| 150 | 
 | 
| 151 | 
 | 
| 152 | 
  inline MTRand::MTRand( const uint32& oneSeed, int nstrides, int stride) : nstrides_(nstrides), stride_(stride) { | 
| 153 | 
    assert(stride_ < nstrides_ && stride_ >= 0); | 
| 154 | 
    seed(oneSeed);  | 
| 155 | 
  } | 
| 156 | 
 | 
| 157 | 
  inline MTRand::MTRand( uint32 *const bigSeed, const uint32 seedLength, int nstrides, int stride) : nstrides_(nstrides), stride_(stride) { | 
| 158 | 
    assert(stride_ < nstrides_ && stride_ >= 0); | 
| 159 | 
    seed(bigSeed,seedLength);  | 
| 160 | 
  } | 
| 161 | 
 | 
| 162 | 
  inline MTRand::MTRand(int nstrides, int stride)       : nstrides_(nstrides), stride_(stride){ | 
| 163 | 
    assert(stride_ < nstrides_ && stride_ >= 0); | 
| 164 | 
    seed();  | 
| 165 | 
  } | 
| 166 | 
 | 
| 167 | 
  inline RealType MTRand::rand() | 
| 168 | 
  { return RealType(randInt()) * (1.0/4294967295.0); } | 
| 169 | 
 | 
| 170 | 
  inline RealType MTRand::rand( const RealType& n ) | 
| 171 | 
  { return rand() * n; } | 
| 172 | 
 | 
| 173 | 
  inline RealType MTRand::randExc() | 
| 174 | 
  { return RealType(randInt()) * (1.0/4294967296.0); } | 
| 175 | 
 | 
| 176 | 
  inline RealType MTRand::randExc( const RealType& n ) | 
| 177 | 
  { return randExc() * n; } | 
| 178 | 
 | 
| 179 | 
  inline RealType MTRand::randDblExc() | 
| 180 | 
  { return ( RealType(randInt()) + 0.5 ) * (1.0/4294967296.0); } | 
| 181 | 
 | 
| 182 | 
  inline RealType MTRand::randDblExc( const RealType& n ) | 
| 183 | 
  { return randDblExc() * n; } | 
| 184 | 
 | 
| 185 | 
  inline RealType MTRand::rand53() | 
| 186 | 
  { | 
| 187 | 
    uint32 a = randInt() >> 5, b = randInt() >> 6; | 
| 188 | 
    return ( a * 67108864.0 + b ) * (1.0/9007199254740992.0);  // by Isaku Wada | 
| 189 | 
  } | 
| 190 | 
 | 
| 191 | 
  inline RealType MTRand::randNorm( const RealType mean, const RealType variance ) | 
| 192 | 
  { | 
| 193 | 
    // Return a real number from a normal (Gaussian) distribution with given | 
| 194 | 
    // mean and variance by Box-Muller method | 
| 195 | 
    assert(variance > 0); | 
| 196 | 
    RealType r = sqrt( -2.0 * log( 1.0-randDblExc()) * variance); | 
| 197 | 
    RealType phi = 2.0 * 3.14159265358979323846264338328 * randExc(); | 
| 198 | 
    return mean + r * cos(phi); | 
| 199 | 
  } | 
| 200 | 
 | 
| 201 | 
  /** | 
| 202 | 
   * This function is modified from the original to allow for random | 
| 203 | 
   * streams on parallel jobs.  It now takes numbers from by striding | 
| 204 | 
   * through the random stream and picking up only one of the random | 
| 205 | 
   * numbers per nstrides_.  The number it picks is the stride_'th | 
| 206 | 
   * number in the stride sequence.   | 
| 207 | 
   */ | 
| 208 | 
  inline MTRand::uint32 MTRand::randInt() { | 
| 209 | 
 | 
| 210 | 
    std::vector<uint32> ranNums(nstrides_); | 
| 211 | 
   | 
| 212 | 
    for (int i = 0; i < nstrides_; ++i) { | 
| 213 | 
      ranNums[i] = rawRandInt(); | 
| 214 | 
    } | 
| 215 | 
   | 
| 216 | 
    return ranNums[stride_]; | 
| 217 | 
  } | 
| 218 | 
 | 
| 219 | 
  /**  | 
| 220 | 
   * This is the original randInt function which implements the mersenne | 
| 221 | 
   * twister. | 
| 222 | 
   */ | 
| 223 | 
  inline MTRand::uint32 MTRand::rawRandInt() | 
| 224 | 
  { | 
| 225 | 
    // Pull a 32-bit integer from the generator state | 
| 226 | 
    // Every other access function simply transforms the numbers extracted here | 
| 227 | 
         | 
| 228 | 
    if( left == 0 ) reload(); | 
| 229 | 
    --left; | 
| 230 | 
                 | 
| 231 | 
    register uint32 s1; | 
| 232 | 
    s1 = *pNext++; | 
| 233 | 
    s1 ^= (s1 >> 11); | 
| 234 | 
    s1 ^= (s1 <<  7) & 0x9d2c5680UL; | 
| 235 | 
    s1 ^= (s1 << 15) & 0xefc60000UL; | 
| 236 | 
    return ( s1 ^ (s1 >> 18) ); | 
| 237 | 
  } | 
| 238 | 
 | 
| 239 | 
  inline MTRand::uint32 MTRand::randInt( const uint32& n ) | 
| 240 | 
  { | 
| 241 | 
    // Find which bits are used in n | 
| 242 | 
    // Optimized by Magnus Jonsson (magnus@smartelectronix.com) | 
| 243 | 
    uint32 used = n; | 
| 244 | 
    used |= used >> 1; | 
| 245 | 
    used |= used >> 2; | 
| 246 | 
    used |= used >> 4; | 
| 247 | 
    used |= used >> 8; | 
| 248 | 
    used |= used >> 16; | 
| 249 | 
         | 
| 250 | 
    // Draw numbers until one is found in [0,n] | 
| 251 | 
    uint32 i; | 
| 252 | 
    do | 
| 253 | 
      i = randInt() & used;  // toss unused bits to shorten search | 
| 254 | 
    while( i > n ); | 
| 255 | 
    return i; | 
| 256 | 
  } | 
| 257 | 
 | 
| 258 | 
 | 
| 259 | 
  inline void MTRand::seed( const uint32 oneSeed ) | 
| 260 | 
  { | 
| 261 | 
    // Seed the generator with a simple uint32 | 
| 262 | 
    initialize(oneSeed); | 
| 263 | 
    reload(); | 
| 264 | 
  } | 
| 265 | 
 | 
| 266 | 
 | 
| 267 | 
  inline void MTRand::seed( uint32 *const bigSeed, const uint32 seedLength ) | 
| 268 | 
  { | 
| 269 | 
    // Seed the generator with an array of uint32's | 
| 270 | 
    // There are 2^19937-1 possible initial states.  This function allows | 
| 271 | 
    // all of those to be accessed by providing at least 19937 bits (with a | 
| 272 | 
    // default seed length of N = 624 uint32's).  Any bits above the lower 32 | 
| 273 | 
    // in each element are discarded. | 
| 274 | 
    // Just call seed() if you want to get array from /dev/urandom | 
| 275 | 
    initialize(19650218UL); | 
| 276 | 
    register int i = 1; | 
| 277 | 
    register uint32 j = 0; | 
| 278 | 
    register int k = ( N > seedLength ? N : seedLength ); | 
| 279 | 
    for( ; k; --k ) | 
| 280 | 
      { | 
| 281 | 
        state[i] = | 
| 282 | 
          state[i] ^ ( (state[i-1] ^ (state[i-1] >> 30)) * 1664525UL ); | 
| 283 | 
        state[i] += ( bigSeed[j] & 0xffffffffUL ) + j; | 
| 284 | 
        state[i] &= 0xffffffffUL; | 
| 285 | 
        ++i;  ++j; | 
| 286 | 
        if( i >= N ) { state[0] = state[N-1];  i = 1; } | 
| 287 | 
        if( j >= seedLength ) j = 0; | 
| 288 | 
      } | 
| 289 | 
    for( k = N - 1; k; --k ) | 
| 290 | 
      { | 
| 291 | 
        state[i] = | 
| 292 | 
          state[i] ^ ( (state[i-1] ^ (state[i-1] >> 30)) * 1566083941UL ); | 
| 293 | 
        state[i] -= i; | 
| 294 | 
        state[i] &= 0xffffffffUL; | 
| 295 | 
        ++i; | 
| 296 | 
        if( i >= N ) { state[0] = state[N-1];  i = 1; } | 
| 297 | 
      } | 
| 298 | 
    state[0] = 0x80000000UL;  // MSB is 1, assuring non-zero initial array | 
| 299 | 
    reload(); | 
| 300 | 
  } | 
| 301 | 
 | 
| 302 | 
 | 
| 303 | 
  inline void MTRand::seed() | 
| 304 | 
  { | 
| 305 | 
    std::vector<uint32> seeds; | 
| 306 | 
 | 
| 307 | 
    seeds = generateSeeds(); | 
| 308 | 
 | 
| 309 | 
    if (seeds.size() == 1) { | 
| 310 | 
      seed( seeds[0] ); | 
| 311 | 
    } else { | 
| 312 | 
      seed( &seeds[0], seeds.size() ); | 
| 313 | 
    } | 
| 314 | 
  } | 
| 315 | 
 | 
| 316 | 
 | 
| 317 | 
  inline std::vector<MTRand::uint32> MTRand::generateSeeds() { | 
| 318 | 
    // Seed the generator with an array from /dev/urandom if available | 
| 319 | 
    // Otherwise use a hash of time() and clock() values | 
| 320 | 
 | 
| 321 | 
    std::vector<uint32> bigSeed;  | 
| 322 | 
 | 
| 323 | 
    // First try getting an array from /dev/urandom | 
| 324 | 
    FILE* urandom = fopen( "/dev/urandom", "rb" ); | 
| 325 | 
    if( urandom ) | 
| 326 | 
      { | 
| 327 | 
        bigSeed.resize(N); | 
| 328 | 
        register uint32 *s = &bigSeed[0]; | 
| 329 | 
        register int i = N; | 
| 330 | 
        register bool success = true; | 
| 331 | 
        while( success && i-- ) | 
| 332 | 
          success = (fread( s++, sizeof(uint32), 1, urandom ) == 0); | 
| 333 | 
        fclose(urandom); | 
| 334 | 
        if( success ) { return bigSeed; } | 
| 335 | 
      } | 
| 336 | 
   | 
| 337 | 
    // Was not successful, so use time() and clock() instead | 
| 338 | 
 | 
| 339 | 
    bigSeed.push_back(hash( time(NULL), clock())); | 
| 340 | 
    return bigSeed; | 
| 341 | 
  } | 
| 342 | 
 | 
| 343 | 
 | 
| 344 | 
  inline void MTRand::initialize( const uint32 seed ) | 
| 345 | 
  { | 
| 346 | 
    // Initialize generator state with seed | 
| 347 | 
    // See Knuth TAOCP Vol 2, 3rd Ed, p.106 for multiplier. | 
| 348 | 
    // In previous versions, most significant bits (MSBs) of the seed affect | 
| 349 | 
    // only MSBs of the state array.  Modified 9 Jan 2002 by Makoto Matsumoto. | 
| 350 | 
    register uint32 *s = state; | 
| 351 | 
    register uint32 *r = state; | 
| 352 | 
    register int i = 1; | 
| 353 | 
    *s++ = seed & 0xffffffffUL; | 
| 354 | 
    for( ; i < N; ++i ) | 
| 355 | 
      { | 
| 356 | 
        *s++ = ( 1812433253UL * ( *r ^ (*r >> 30) ) + i ) & 0xffffffffUL; | 
| 357 | 
        r++; | 
| 358 | 
      } | 
| 359 | 
  } | 
| 360 | 
 | 
| 361 | 
 | 
| 362 | 
  inline void MTRand::reload() | 
| 363 | 
  { | 
| 364 | 
    // Generate N new values in state | 
| 365 | 
    // Made clearer and faster by Matthew Bellew (matthew.bellew@home.com) | 
| 366 | 
    register uint32 *p = state; | 
| 367 | 
    register int i; | 
| 368 | 
    for( i = N - M; i--; ++p ) | 
| 369 | 
      *p = twist( p[M], p[0], p[1] ); | 
| 370 | 
    for( i = M; --i; ++p ) | 
| 371 | 
      *p = twist( p[M-N], p[0], p[1] ); | 
| 372 | 
    *p = twist( p[M-N], p[0], state[0] ); | 
| 373 | 
 | 
| 374 | 
    left = N, pNext = state; | 
| 375 | 
  } | 
| 376 | 
 | 
| 377 | 
 | 
| 378 | 
  inline MTRand::uint32 MTRand::hash( time_t t, clock_t c ) | 
| 379 | 
  { | 
| 380 | 
    // Get a uint32 from t and c | 
| 381 | 
    // Better than uint32(x) in case x is floating point in [0,1] | 
| 382 | 
    // Based on code by Lawrence Kirby (fred@genesis.demon.co.uk) | 
| 383 | 
 | 
| 384 | 
    static uint32 differ = 0;  // guarantee time-based seeds will change | 
| 385 | 
 | 
| 386 | 
    uint32 h1 = 0; | 
| 387 | 
    unsigned char *p = (unsigned char *) &t; | 
| 388 | 
    for( size_t i = 0; i < sizeof(t); ++i ) | 
| 389 | 
      { | 
| 390 | 
        h1 *= UCHAR_MAX + 2U; | 
| 391 | 
        h1 += p[i]; | 
| 392 | 
      } | 
| 393 | 
    uint32 h2 = 0; | 
| 394 | 
    p = (unsigned char *) &c; | 
| 395 | 
    for( size_t j = 0; j < sizeof(c); ++j ) | 
| 396 | 
      { | 
| 397 | 
        h2 *= UCHAR_MAX + 2U; | 
| 398 | 
        h2 += p[j]; | 
| 399 | 
      } | 
| 400 | 
    return ( h1 + differ++ ) ^ h2; | 
| 401 | 
  } | 
| 402 | 
 | 
| 403 | 
 | 
| 404 | 
  inline void MTRand::save( uint32* saveArray ) const | 
| 405 | 
  { | 
| 406 | 
    register uint32 *sa = saveArray; | 
| 407 | 
    register const uint32 *s = state; | 
| 408 | 
    register int i = N; | 
| 409 | 
    for( ; i--; *sa++ = *s++ ) {} | 
| 410 | 
    *sa = left; | 
| 411 | 
  } | 
| 412 | 
 | 
| 413 | 
 | 
| 414 | 
  inline void MTRand::load( uint32 *const loadArray ) | 
| 415 | 
  { | 
| 416 | 
    register uint32 *s = state; | 
| 417 | 
    register uint32 *la = loadArray; | 
| 418 | 
    register int i = N; | 
| 419 | 
    for( ; i--; *s++ = *la++ ) {} | 
| 420 | 
    left = *la; | 
| 421 | 
    pNext = &state[N-left]; | 
| 422 | 
  } | 
| 423 | 
 | 
| 424 | 
 | 
| 425 | 
  inline std::ostream& operator<<( std::ostream& os, const MTRand& mtrand ) | 
| 426 | 
  { | 
| 427 | 
    register const MTRand::uint32 *s = mtrand.state; | 
| 428 | 
    register int i = mtrand.N; | 
| 429 | 
    for( ; i--; os << *s++ << "\t" ) {} | 
| 430 | 
    return os << mtrand.left; | 
| 431 | 
  } | 
| 432 | 
 | 
| 433 | 
 | 
| 434 | 
  inline std::istream& operator>>( std::istream& is, MTRand& mtrand ) | 
| 435 | 
  { | 
| 436 | 
    register MTRand::uint32 *s = mtrand.state; | 
| 437 | 
    register int i = mtrand.N; | 
| 438 | 
    for( ; i--; is >> *s++ ) {} | 
| 439 | 
    is >> mtrand.left; | 
| 440 | 
    mtrand.pNext = &mtrand.state[mtrand.N-mtrand.left]; | 
| 441 | 
    return is; | 
| 442 | 
  } | 
| 443 | 
 | 
| 444 | 
} | 
| 445 | 
#endif  // MERSENNETWISTER_H | 
| 446 | 
 | 
| 447 | 
// Change log: | 
| 448 | 
// | 
| 449 | 
// v0.1 - First release on 15 May 2000 | 
| 450 | 
//      - Based on code by Makoto Matsumoto, Takuji Nishimura, and Shawn Cokus | 
| 451 | 
//      - Translated from C to C++ | 
| 452 | 
//      - Made completely ANSI compliant | 
| 453 | 
//      - Designed convenient interface for initialization, seeding, and | 
| 454 | 
//        obtaining numbers in default or user-defined ranges | 
| 455 | 
//      - Added automatic seeding from /dev/urandom or time() and clock() | 
| 456 | 
//      - Provided functions for saving and loading generator state | 
| 457 | 
// | 
| 458 | 
// v0.2 - Fixed bug which reloaded generator one step too late | 
| 459 | 
// | 
| 460 | 
// v0.3 - Switched to clearer, faster reload() code from Matthew Bellew | 
| 461 | 
// | 
| 462 | 
// v0.4 - Removed trailing newline in saved generator format to be consistent | 
| 463 | 
//        with output format of built-in types | 
| 464 | 
// | 
| 465 | 
// v0.5 - Improved portability by replacing static const int's with enum's and | 
| 466 | 
//        clarifying return values in seed(); suggested by Eric Heimburg | 
| 467 | 
//      - Removed MAXINT constant; use 0xffffffffUL instead | 
| 468 | 
// | 
| 469 | 
// v0.6 - Eliminated seed overflow when uint32 is larger than 32 bits | 
| 470 | 
//      - Changed integer [0,n] generator to give better uniformity | 
| 471 | 
// | 
| 472 | 
// v0.7 - Fixed operator precedence ambiguity in reload() | 
| 473 | 
//      - Added access for real numbers in (0,1) and (0,n) | 
| 474 | 
// | 
| 475 | 
// v0.8 - Included time.h header to properly support time_t and clock_t | 
| 476 | 
// | 
| 477 | 
// v1.0 - Revised seeding to match 26 Jan 2002 update of Nishimura and Matsumoto | 
| 478 | 
//      - Allowed for seeding with arrays of any length | 
| 479 | 
//      - Added access for real numbers in [0,1) with 53-bit resolution | 
| 480 | 
//      - Added access for real numbers from normal (Gaussian) distributions | 
| 481 | 
//      - Increased overall speed by optimizing twist() | 
| 482 | 
//      - Doubled speed of integer [0,n] generation | 
| 483 | 
//      - Fixed out-of-range number generation on 64-bit machines | 
| 484 | 
//      - Improved portability by substituting literal constants for long enum's | 
| 485 | 
//      - Changed license from GNU LGPL to BSD |