NcEngine
Xoshiro256.h
Go to the documentation of this file.
1
5#pragma once
6
7namespace nc
8{
11{
12 public:
13 using result_type = unsigned long long;
14
15 constexpr explicit Xoshiro256ss(result_type seed) noexcept
16 : m_state{SplitMix(&seed), SplitMix(&seed), SplitMix(&seed), SplitMix(&seed)}
17 {
18 }
19
20 constexpr auto Fork() noexcept -> Xoshiro256ss
21 {
22 return Xoshiro256ss{this->operator()()};
23 }
24
25 constexpr auto operator()() noexcept -> result_type
26 {
27 result_type result = Rotate(m_state[1] * 5, 7) * 9;
28 result_type t = m_state[1] << 17;
29 m_state[2] ^= m_state[0];
30 m_state[3] ^= m_state[1];
31 m_state[1] ^= m_state[2];
32 m_state[0] ^= m_state[3];
33 m_state[2] ^= t;
34 m_state[3] = Rotate(m_state[3], 45);
35 return result;
36 }
37
38 constexpr friend bool operator==(const Xoshiro256ss& lhs, const Xoshiro256ss& rhs) noexcept
39 {
40 return lhs.m_state[0] == rhs.m_state[0] && lhs.m_state[1] == rhs.m_state[1] &&
41 lhs.m_state[2] == rhs.m_state[2] && lhs.m_state[3] == rhs.m_state[3];
42 }
43
44 constexpr friend bool operator!=(const Xoshiro256ss& lhs, const Xoshiro256ss& rhs) noexcept
45 {
46 return !(lhs == rhs);
47 }
48
49 static constexpr auto min() noexcept { return result_type(0); }
50 static constexpr auto max() noexcept { return result_type(-1); }
51
52 private:
53 result_type m_state[4];
54
55 constexpr auto SplitMix(result_type* x) noexcept -> result_type
56 {
57 result_type z = (*x += 0x9e3779b97f4a7c15uLL);
58 z = (z ^ (z >> 30)) * 0xbf58476d1ce4e5b9uLL;
59 z = (z ^ (z >> 27)) * 0x94d049bb133111ebuLL;
60 return z ^ (z >> 31);
61 }
62
63 constexpr auto Rotate(result_type x, int k) noexcept -> result_type
64 {
65 return (x << k) | (x >> (64 - k));
66 }
67};
68} // namespace nc
Random number engine based on Xoshiro256** by David Blackman and Sebastiano Vigna.
Definition: Xoshiro256.h:11