2 Stockfish, a UCI chess playing engine derived from Glaurung 2.1
3 Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
4 Copyright (C) 2008-2010 Marco Costalba, Joona Kiiski, Tord Romstad
6 Stockfish is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
11 Stockfish is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>.
19 This file is based on original code by Heinz van Saanen and is
20 available under the GNU General Public License as published by
21 the Free Software Foundation, either version 3 of the License, or
22 (at your option) any later version.
24 ** George Marsaglia invented the RNG-Kiss-family in the early 90's.
25 ** This is a specific version that Heinz van Saanen derived and
26 ** tested from some public domain code by Bob Jenkins:
28 ** Quite platform independent
29 ** Passes ALL dieharder tests! Here *nix sys-rand() e.g. fails miserably:-)
30 ** ~12 times faster than my *nix sys-rand()
31 ** ~4 times faster than SSE2-version of Mersenne twister
32 ** Average cycle length: ~2^126
34 ** Return doubles with a full 53 bit mantissa
38 #if !defined(RKISS_H_INCLUDED)
39 #define RKISS_H_INCLUDED
45 // Keep variables always together
46 struct S { uint64_t a, b, c, d; } s;
48 uint64_t rotate(uint64_t x, uint64_t k) const {
49 return (x << k) | (x >> (64 - k));
52 // Return 64 bit unsigned integer in between [0, 2^64 - 1]
56 e = s.a - rotate(s.b, 7);
57 s.a = s.b ^ rotate(s.c, 13);
58 s.b = s.c + rotate(s.d, 37);
63 // Init seed and scramble a few rounds
67 s.b = s.c = s.d = 0xd4e12c77;
68 for (int i = 0; i < 73; i++)
73 RKISS() { raninit(); }
74 template<typename T> T rand() { return T(rand64()); }
77 #endif // !defined(RKISS_H_INCLUDED)