2016-06-30 18:15:05 +10: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-06-30 18:15:05 +10:00
|
|
|
*
|
|
|
|
* Copyright 2016 Danny Robson <danny@nerdcruft.net>
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2017-11-22 16:49:37 +11:00
|
|
|
#include "mwc64x.hpp"
|
2016-06-30 18:15:05 +10:00
|
|
|
|
2019-05-17 12:26:08 +10:00
|
|
|
#include "../debug/assert.hpp"
|
2016-06-30 18:15:05 +10:00
|
|
|
|
2018-08-05 14:42:02 +10:00
|
|
|
using cruft::rand::mwc64x;
|
2016-06-30 18:15:05 +10:00
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
mwc64x::mwc64x (seed_type _seed):
|
|
|
|
m_state (_seed)
|
|
|
|
{
|
|
|
|
CHECK_NEZ (m_state);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2019-02-21 20:53:07 +11:00
|
|
|
mwc64x::result_type
|
2016-06-30 18:15:05 +10:00
|
|
|
mwc64x::operator() (void)
|
|
|
|
{
|
|
|
|
CHECK_NEZ (m_state);
|
|
|
|
|
|
|
|
uint32_t c = m_state >> 32u;
|
|
|
|
uint32_t x = m_state & 0xFFFFFFFFu;
|
|
|
|
|
|
|
|
m_state = x * 4294883355ULL + c;
|
|
|
|
|
|
|
|
return x ^ c;
|
|
|
|
}
|