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
|
|
|
*
|
|
|
|
* Copyright 2015-2016 Danny Robson <danny@nerdcruft.net>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __UTIL_RAND_XORSHIFT_HPP
|
|
|
|
#define __UTIL_RAND_XORSHIFT_HPP
|
|
|
|
|
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.
|
|
|
|
//
|
|
|
|
// * does not comply with the c++11 rng class requirements
|
|
|
|
// * users may not rely on identical output across executions or library
|
|
|
|
// updates. internal constants may change across releases
|
|
|
|
template <typename T>
|
|
|
|
struct xorshift {
|
|
|
|
public:
|
2016-07-01 16:26:25 +10:00
|
|
|
using result_type = T;
|
|
|
|
|
2017-05-23 12:50:51 +10:00
|
|
|
explicit xorshift (T seed);
|
2016-02-02 11:32:55 +11:00
|
|
|
|
2016-07-01 16:26:25 +10:00
|
|
|
result_type operator() (void);
|
|
|
|
|
|
|
|
static result_type min (void);
|
|
|
|
static result_type max (void);
|
|
|
|
|
|
|
|
void discard (unsigned);
|
2016-02-02 11:32:55 +11:00
|
|
|
|
|
|
|
private:
|
|
|
|
T m_state;
|
|
|
|
};
|
2017-01-05 15:06:49 +11:00
|
|
|
}
|
2016-02-02 11:32:55 +11:00
|
|
|
|
|
|
|
#endif
|