X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmisc.h;h=b9277372aa4ac224dd2c4baf68aebfceef64d711;hp=420347f43faf46313fe06a3991f3e9c7bbd02a91;hb=158864270a055fe20dca4a87f4b7a8aa9cedfeb9;hpb=a87da2c4b3dce975fa8642c352c99aed5a1420f8 diff --git a/src/misc.h b/src/misc.h index 420347f4..b9277372 100644 --- a/src/misc.h +++ b/src/misc.h @@ -59,4 +59,37 @@ std::ostream& operator<<(std::ostream&, SyncCout); #define sync_cout std::cout << IO_LOCK #define sync_endl std::endl << IO_UNLOCK + +/// xorshift64star Pseudo-Random Number Generator +/// This class is based on original code written and dedicated +/// to the public domain by Sebastiano Vigna (2014). +/// It has the following characteristics: +/// - Outputs 64-bit numbers +/// - Passes Dieharder and SmallCrush test batteries +/// - Does not require warm-up, no zeroland to escape +/// - Internal state is a single 64-bit integer +/// - Period is 2^64 - 1 +/// - Speed: 1.60 ns/call (Core i7 @3.40GHz) +/// For further analysis see +/// + +class PRNG { + + uint64_t x; + + uint64_t rand64() { + x^=x>>12; x^=x<<25; x^=x>>27; + return x * 2685821657736338717LL; + } + +public: + PRNG(uint64_t seed) : x(seed) { assert(seed); } + + template T rand() { return T(rand64()); } + + /// Special generator used to fast init magic numbers. + /// Output values only have 1/8th of their bits set on average. + template T sparse_rand() { return T(rand64() & rand64() & rand64()); } +}; + #endif // #ifndef MISC_H_INCLUDED