You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
811 B
30 lines
811 B
4 years ago
|
#pragma once
|
||
|
|
||
|
#include "impl.hpp"
|
||
4 years ago
|
#include <debug.h>
|
||
4 years ago
|
|
||
|
namespace rng
|
||
|
{
|
||
|
struct xoroshiro128plus : public RNG
|
||
|
{
|
||
|
using State = std::array<std::uint64_t, 2>;
|
||
4 years ago
|
#define P D_dprintf("xorng: seeded with (%lu, %lu)", state[0], state[1]);
|
||
|
inline constexpr xoroshiro128plus(std::uint64_t s0, std::uint64_t s1) : state({s0, s1}){P}
|
||
|
inline constexpr xoroshiro128plus(std::array<std::uint64_t, 2>&& ar) : state(ar){P}
|
||
|
inline constexpr xoroshiro128plus(const std::array<std::uint64_t, 2>& ar) : state(ar){P}
|
||
|
inline constexpr xoroshiro128plus(const std::uint64_t (&ar)[2]) : state({ar[0], ar[1]}){P}
|
||
|
#undef P
|
||
4 years ago
|
std::uint64_t next_ulong();
|
||
|
using RNG::next_long;
|
||
|
std::int64_t next_long() override;
|
||
|
|
||
|
void jump();
|
||
|
void long_jump();
|
||
|
protected:
|
||
|
double sample() override;
|
||
|
private:
|
||
|
State state;
|
||
|
};
|
||
|
}
|
||
4 years ago
|
|