2016-02-02 11:32:55 +11:00
|
|
|
/*
|
2018-08-04 15:14:06 +10:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2016-02-02 11:32:55 +11:00
|
|
|
*
|
2019-02-21 20:53:07 +11:00
|
|
|
* Copyright 2015-2019 Danny Robson <danny@nerdcruft.net>
|
2016-02-02 11:32:55 +11:00
|
|
|
*/
|
|
|
|
|
2019-02-21 20:53:07 +11:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <limits>
|
2016-02-02 11:32:55 +11:00
|
|
|
|
2018-08-05 14:42:02 +10:00
|
|
|
namespace cruft::rand {
|
2016-02-02 11:32:55 +11:00
|
|
|
// implements a naive xorshift random generator.
|
|
|
|
//
|
|
|
|
// * users may not rely on identical output across executions or library
|
|
|
|
// updates. internal constants may change across releases
|
2019-02-21 20:53:07 +11:00
|
|
|
template <typename ValueT>
|
2016-02-02 11:32:55 +11:00
|
|
|
struct xorshift {
|
|
|
|
public:
|
2019-02-21 20:53:07 +11:00
|
|
|
using result_type = ValueT;
|
2016-07-01 16:26:25 +10:00
|
|
|
|
2019-02-21 20:53:07 +11:00
|
|
|
explicit xorshift (ValueT seed);
|
2016-02-02 11:32:55 +11:00
|
|
|
|
2016-07-01 16:26:25 +10:00
|
|
|
result_type operator() (void);
|
|
|
|
|
2019-02-21 20:53:07 +11:00
|
|
|
static constexpr result_type min (void) noexcept { return 1u; }
|
|
|
|
static constexpr auto max (void) noexcept { return std::numeric_limits<result_type>::max (); }
|
2016-07-01 16:26:25 +10:00
|
|
|
|
|
|
|
void discard (unsigned);
|
2016-02-02 11:32:55 +11:00
|
|
|
|
|
|
|
private:
|
2019-02-21 20:53:07 +11:00
|
|
|
ValueT m_state;
|
2016-02-02 11:32:55 +11:00
|
|
|
};
|
2019-02-21 20:53:07 +11:00
|
|
|
}
|