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>
|
|
|
|
*/
|
|
|
|
|
2017-11-22 16:49:37 +11:00
|
|
|
#include "xorshift.hpp"
|
2016-02-02 11:32:55 +11:00
|
|
|
|
|
|
|
#include "../debug.hpp"
|
|
|
|
|
|
|
|
#include <cstdint>
|
|
|
|
|
2018-08-05 14:42:02 +10:00
|
|
|
using cruft::rand::xorshift;
|
2016-02-02 11:32:55 +11:00
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
template <typename T>
|
|
|
|
xorshift<T>::xorshift (T seed):
|
|
|
|
m_state (seed)
|
|
|
|
{
|
2016-07-01 16:25:48 +10:00
|
|
|
if (!m_state)
|
|
|
|
throw std::invalid_argument ("xorshift seed must not be zero");
|
2016-02-02 11:32:55 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2016-07-01 16:23:55 +10:00
|
|
|
// setup the constants a, b, and c. we use the values from the example
|
|
|
|
// generators provided in Marsaglia's paper.
|
|
|
|
template <typename T>
|
|
|
|
struct constants;
|
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
template <>
|
|
|
|
struct constants<uint32_t>
|
|
|
|
{
|
|
|
|
static constexpr uint32_t a = 13u;
|
|
|
|
static constexpr uint32_t b = 17u;
|
|
|
|
static constexpr uint32_t c = 5u;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
template <>
|
|
|
|
struct constants<uint64_t>
|
|
|
|
{
|
|
|
|
static constexpr uint64_t a = 13u;
|
|
|
|
static constexpr uint64_t b = 7u;
|
|
|
|
static constexpr uint64_t c = 17u;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
template <typename T>
|
|
|
|
typename xorshift<T>::result_type
|
|
|
|
xorshift<T>::operator() (void)
|
|
|
|
{
|
|
|
|
m_state ^= m_state >> constants<T>::a;
|
|
|
|
m_state ^= m_state << constants<T>::b;
|
|
|
|
m_state ^= m_state >> constants<T>::c;
|
|
|
|
|
|
|
|
CHECK_NEZ (m_state);
|
|
|
|
return m_state;
|
|
|
|
};
|
2016-02-02 11:32:55 +11:00
|
|
|
|
|
|
|
|
2016-07-01 16:26:25 +10:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
template <typename T>
|
|
|
|
typename xorshift<T>::result_type
|
|
|
|
xorshift<T>::min (void)
|
|
|
|
{
|
|
|
|
return 1u;
|
|
|
|
}
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
template <typename T>
|
|
|
|
typename xorshift<T>::result_type
|
|
|
|
xorshift<T>::max (void)
|
|
|
|
{
|
|
|
|
return std::numeric_limits<T>::max ();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
template <typename T>
|
|
|
|
void
|
|
|
|
xorshift<T>::discard (unsigned count)
|
|
|
|
{
|
|
|
|
while (count--)
|
|
|
|
(*this)();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-02-02 11:32:55 +11:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2018-08-05 14:42:02 +10:00
|
|
|
template struct cruft::rand::xorshift<uint32_t>;
|
|
|
|
template struct cruft::rand::xorshift<uint64_t>;
|