2017-04-22 22:49:49 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* JavaScript version of Mersenne Twister
|
|
|
|
*
|
|
|
|
* @author Yasuharu Okada
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2017-04-26 22:01:48 +00:00
|
|
|
function MersenneTwister () { // eslint-disable-line no-unused-vars
|
2017-04-25 22:21:31 +00:00
|
|
|
const N = 624
|
|
|
|
const M = 397
|
|
|
|
const UPPER_MASK = 0x80000000
|
|
|
|
const LOWER_MASK = 0x7fffffff
|
|
|
|
const MAG01 = new Int32Array([0, 0x9908b0df])
|
|
|
|
|
|
|
|
let mt = new Int32Array(N)
|
2017-04-22 22:49:49 +00:00
|
|
|
/* the array for the state vector */
|
2017-04-25 22:21:31 +00:00
|
|
|
let mti = 625
|
2017-04-22 22:49:49 +00:00
|
|
|
|
|
|
|
this.seed = function (s) {
|
2017-04-25 22:21:31 +00:00
|
|
|
mt[0] = s | 0
|
2017-04-22 22:49:49 +00:00
|
|
|
for (mti = 1; mti < N; mti++) {
|
2017-04-25 22:21:31 +00:00
|
|
|
mt[mti] = Math.imul(1812433253, mt[mti - 1] ^ (mt[mti - 1] >>> 30)) + mti
|
2017-04-22 22:49:49 +00:00
|
|
|
}
|
2017-04-25 22:21:31 +00:00
|
|
|
}
|
2017-04-22 22:49:49 +00:00
|
|
|
|
|
|
|
this.export_state = function () {
|
2017-04-25 22:21:31 +00:00
|
|
|
return [mt, mti]
|
|
|
|
}
|
2017-04-22 22:49:49 +00:00
|
|
|
|
|
|
|
this.import_state = function (s) {
|
2017-04-25 22:21:31 +00:00
|
|
|
mt = s[0]
|
|
|
|
mti = s[1]
|
|
|
|
}
|
2017-04-22 22:49:49 +00:00
|
|
|
|
|
|
|
this.export_mta = function () {
|
2017-04-25 22:21:31 +00:00
|
|
|
return mt
|
|
|
|
}
|
2017-04-22 22:49:49 +00:00
|
|
|
|
|
|
|
this.import_mta = function (_mta) {
|
2017-04-25 22:21:31 +00:00
|
|
|
mt = _mta
|
|
|
|
}
|
2017-04-22 22:49:49 +00:00
|
|
|
|
|
|
|
this.export_mti = function () {
|
2017-04-25 22:21:31 +00:00
|
|
|
return mti
|
|
|
|
}
|
2017-04-22 22:49:49 +00:00
|
|
|
|
|
|
|
this.import_mti = function (_mti) {
|
2017-04-25 22:21:31 +00:00
|
|
|
mti = _mti
|
|
|
|
}
|
2017-04-22 22:49:49 +00:00
|
|
|
|
|
|
|
this.int32 = function () {
|
2017-04-25 22:21:31 +00:00
|
|
|
let y, kk
|
2017-04-22 22:49:49 +00:00
|
|
|
|
|
|
|
if (mti >= N) { /* generate N words at one time */
|
|
|
|
for (kk = 0; kk < N - M; kk++) {
|
2017-04-25 22:21:31 +00:00
|
|
|
y = ((mt[kk] & UPPER_MASK) | (mt[kk + 1] & LOWER_MASK))
|
|
|
|
mt[kk] = (mt[kk + M] ^ (y >>> 1) ^ MAG01[y & 0x1])
|
2017-04-22 22:49:49 +00:00
|
|
|
}
|
|
|
|
for (; kk < N - 1; kk++) {
|
2017-04-25 22:21:31 +00:00
|
|
|
y = ((mt[kk] & UPPER_MASK) | (mt[kk + 1] & LOWER_MASK))
|
|
|
|
mt[kk] = (mt[kk + (M - N)] ^ (y >>> 1) ^ MAG01[y & 0x1])
|
2017-04-22 22:49:49 +00:00
|
|
|
}
|
2017-04-25 22:21:31 +00:00
|
|
|
y = ((mt[N - 1] & UPPER_MASK) | (mt[0] & LOWER_MASK))
|
|
|
|
mt[N - 1] = (mt[M - 1] ^ (y >>> 1) ^ MAG01[y & 0x1])
|
|
|
|
mti = 0
|
2017-04-22 22:49:49 +00:00
|
|
|
}
|
|
|
|
|
2017-04-25 22:21:31 +00:00
|
|
|
y = mt[mti++]
|
2017-04-22 22:49:49 +00:00
|
|
|
|
|
|
|
/* Tempering */
|
2017-04-25 22:21:31 +00:00
|
|
|
y = y ^ (y >>> 11)
|
|
|
|
y = y ^ ((y << 7) & 0x9d2c5680)
|
|
|
|
y = y ^ ((y << 15) & 0xefc60000)
|
|
|
|
y = y ^ (y >>> 18)
|
2017-04-22 22:49:49 +00:00
|
|
|
|
2017-04-25 22:21:31 +00:00
|
|
|
return y >>> 0
|
|
|
|
}
|
2017-04-22 22:49:49 +00:00
|
|
|
|
|
|
|
this.real2 = function () {
|
2017-04-25 22:21:31 +00:00
|
|
|
return ((this.int32() >>> 5) * 67108864.0 + (this.int32() >>> 6)) / 9007199254740992.0
|
|
|
|
}
|
2017-04-22 22:49:49 +00:00
|
|
|
}
|