13 using result_type =
unsigned long long;
15 constexpr explicit Xoshiro256ss(result_type seed) noexcept
16 : m_state{SplitMix(&seed), SplitMix(&seed), SplitMix(&seed), SplitMix(&seed)}
25 constexpr auto operator()()
noexcept -> result_type
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];
34 m_state[3] = Rotate(m_state[3], 45);
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];
49 static constexpr auto min()
noexcept {
return result_type(0); }
50 static constexpr auto max()
noexcept {
return result_type(-1); }
53 result_type m_state[4];
55 constexpr auto SplitMix(result_type* x)
noexcept -> result_type
57 result_type z = (*x += 0x9e3779b97f4a7c15uLL);
58 z = (z ^ (z >> 30)) * 0xbf58476d1ce4e5b9uLL;
59 z = (z ^ (z >> 27)) * 0x94d049bb133111ebuLL;
63 constexpr auto Rotate(result_type x,
int k)
noexcept -> result_type
65 return (x << k) | (x >> (64 - k));
Random number engine based on Xoshiro256** by David Blackman and Sebastiano Vigna.
Definition: Xoshiro256.h:11