Commit a55b0793 authored by Paul's avatar Paul
Browse files

Formatting

parent 78feaa4b
......@@ -30,8 +30,6 @@ constexpr T normalize(unsigned long z)
return z % max;
}
template <class T>
struct xorshf96_generator
{
......@@ -39,9 +37,7 @@ struct xorshf96_generator
unsigned long y = 362436069;
unsigned long z;
xorshf96_generator(unsigned long seed = 0)
: z(521288629ULL ^ seed)
{}
xorshf96_generator(unsigned long seed = 0) : z(521288629ULL ^ seed) {}
constexpr T operator()() noexcept
{
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment