2011-10-12 20:28:33 +00:00
|
|
|
#ifndef SPROUT_RANDOM_LINEAR_CONGRUENTIAL_HPP
|
|
|
|
#define SPROUT_RANDOM_LINEAR_CONGRUENTIAL_HPP
|
|
|
|
|
|
|
|
#include <cstdint>
|
|
|
|
#include <limits>
|
|
|
|
#include <ios>
|
2011-10-26 06:57:31 +00:00
|
|
|
#include <stdexcept>
|
2012-11-15 09:36:55 +00:00
|
|
|
#include <type_traits>
|
2011-10-12 20:28:33 +00:00
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/random/detail/const_mod.hpp>
|
|
|
|
#include <sprout/random/random_result.hpp>
|
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace random {
|
|
|
|
//
|
|
|
|
// linear_congruential_engine
|
|
|
|
//
|
|
|
|
template<typename IntType, IntType a, IntType c, IntType m>
|
|
|
|
class linear_congruential_engine {
|
|
|
|
public:
|
|
|
|
typedef IntType result_type;
|
|
|
|
private:
|
|
|
|
struct private_constructor_tag {};
|
|
|
|
public:
|
|
|
|
SPROUT_STATIC_CONSTEXPR IntType multiplier = a;
|
|
|
|
SPROUT_STATIC_CONSTEXPR IntType increment = c;
|
|
|
|
SPROUT_STATIC_CONSTEXPR IntType modulus = m;
|
|
|
|
SPROUT_STATIC_CONSTEXPR IntType default_seed = 1;
|
|
|
|
public:
|
|
|
|
static_assert(std::numeric_limits<IntType>::is_integer, "std::numeric_limits<IntType>::is_integer");
|
|
|
|
static_assert(m == 0 || a < m, "m == 0 || a < m");
|
|
|
|
static_assert(m == 0 || c < m, "m == 0 || c < m");
|
|
|
|
private:
|
2011-10-18 13:28:32 +00:00
|
|
|
static SPROUT_CONSTEXPR result_type static_min() {
|
|
|
|
return c == 0 ? 1 : 0;
|
|
|
|
}
|
|
|
|
static SPROUT_CONSTEXPR result_type static_max() {
|
|
|
|
return modulus - 1;
|
|
|
|
}
|
2012-11-15 09:36:55 +00:00
|
|
|
template<typename T>
|
|
|
|
static SPROUT_CONSTEXPR typename std::enable_if<!(c == 0) && std::is_unsigned<T>::value, bool>::type
|
|
|
|
arg_check_nothrow(T const& x0) {
|
|
|
|
return x0 <= static_max();
|
|
|
|
}
|
|
|
|
template<typename T>
|
|
|
|
static SPROUT_CONSTEXPR typename std::enable_if<!(!(c == 0) && std::is_unsigned<T>::value), bool>::type
|
|
|
|
arg_check_nothrow(T const& x0) {
|
2011-10-16 14:38:40 +00:00
|
|
|
return x0 >= static_min() && x0 <= static_max();
|
|
|
|
}
|
|
|
|
static SPROUT_CONSTEXPR IntType arg_check(IntType const& x0) {
|
2012-11-15 09:36:55 +00:00
|
|
|
return arg_check_nothrow(x0) ? x0
|
2011-10-26 06:57:31 +00:00
|
|
|
: throw std::invalid_argument("linear_congruential_engine<>: invalid argument (x0 >= static_min() && x0 <= static_max())")
|
2011-10-12 20:28:33 +00:00
|
|
|
;
|
|
|
|
}
|
|
|
|
static SPROUT_CONSTEXPR IntType init_seed_2(IntType const& x0) {
|
2011-10-16 14:38:40 +00:00
|
|
|
return arg_check(increment == 0 && x0 == 0 ? 1 : x0);
|
2011-10-12 20:28:33 +00:00
|
|
|
}
|
|
|
|
static SPROUT_CONSTEXPR IntType init_seed_1(IntType const& x0) {
|
|
|
|
return init_seed_2(x0 <= 0 && x0 != 0 ? x0 + modulus : x0);
|
|
|
|
}
|
|
|
|
static SPROUT_CONSTEXPR IntType init_seed(IntType const& x0) {
|
|
|
|
return init_seed_1(modulus == 0 ? x0 : x0 % modulus);
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
IntType x_;
|
|
|
|
private:
|
|
|
|
SPROUT_CONSTEXPR linear_congruential_engine(IntType const& x, private_constructor_tag)
|
|
|
|
: x_(x)
|
|
|
|
{}
|
|
|
|
SPROUT_CONSTEXPR sprout::random::random_result<linear_congruential_engine> generate(result_type result) const {
|
|
|
|
return sprout::random::random_result<linear_congruential_engine>(
|
|
|
|
result,
|
|
|
|
linear_congruential_engine(result, private_constructor_tag())
|
|
|
|
);
|
|
|
|
}
|
|
|
|
public:
|
|
|
|
SPROUT_CONSTEXPR linear_congruential_engine()
|
|
|
|
: x_(init_seed(default_seed))
|
|
|
|
{}
|
2012-04-11 14:28:29 +00:00
|
|
|
explicit SPROUT_CONSTEXPR linear_congruential_engine(IntType const& x0)
|
2011-10-12 20:28:33 +00:00
|
|
|
: x_(init_seed(x0))
|
|
|
|
{}
|
|
|
|
SPROUT_CONSTEXPR result_type min() const {
|
|
|
|
return static_min();
|
|
|
|
}
|
|
|
|
SPROUT_CONSTEXPR result_type max() const {
|
|
|
|
return static_max();
|
|
|
|
}
|
|
|
|
SPROUT_CONSTEXPR sprout::random::random_result<linear_congruential_engine> operator()() const {
|
|
|
|
return generate(sprout::random::detail::const_mod<IntType, m>::mult_add(a, x_, c));
|
|
|
|
}
|
|
|
|
friend SPROUT_CONSTEXPR bool operator==(linear_congruential_engine const& lhs, linear_congruential_engine const& rhs) {
|
|
|
|
return lhs.x_ == rhs.x_;
|
|
|
|
}
|
|
|
|
friend SPROUT_CONSTEXPR bool operator!=(linear_congruential_engine const& lhs, linear_congruential_engine const& rhs) {
|
|
|
|
return !(lhs == rhs);
|
|
|
|
}
|
|
|
|
template<typename Elem, typename Traits>
|
|
|
|
friend std::basic_istream<Elem, Traits>& operator>>(
|
|
|
|
std::basic_istream<Elem, Traits>& lhs,
|
2011-10-16 14:38:40 +00:00
|
|
|
linear_congruential_engine& rhs
|
2011-10-12 20:28:33 +00:00
|
|
|
)
|
|
|
|
{
|
|
|
|
IntType x;
|
2011-10-18 08:13:16 +00:00
|
|
|
if (lhs >> x) {
|
2011-10-16 14:38:40 +00:00
|
|
|
if(arg_check_nothrow(x)) {
|
2011-10-12 20:28:33 +00:00
|
|
|
rhs.x_ = x;
|
|
|
|
} else {
|
|
|
|
lhs.setstate(std::ios_base::failbit);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return lhs;
|
|
|
|
}
|
|
|
|
template<typename Elem, typename Traits>
|
|
|
|
friend std::basic_ostream<Elem, Traits>& operator<<(
|
|
|
|
std::basic_ostream<Elem, Traits>& lhs,
|
|
|
|
linear_congruential_engine const& rhs
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return lhs << rhs.x_;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
template<typename IntType, IntType a, IntType c, IntType m>
|
2012-06-15 15:08:42 +00:00
|
|
|
SPROUT_CONSTEXPR_OR_CONST IntType sprout::random::linear_congruential_engine<IntType, a, c, m>::multiplier;
|
2011-10-12 20:28:33 +00:00
|
|
|
template<typename IntType, IntType a, IntType c, IntType m>
|
2012-06-15 15:08:42 +00:00
|
|
|
SPROUT_CONSTEXPR_OR_CONST IntType sprout::random::linear_congruential_engine<IntType, a, c, m>::increment;
|
2011-10-12 20:28:33 +00:00
|
|
|
template<typename IntType, IntType a, IntType c, IntType m>
|
2012-06-15 15:08:42 +00:00
|
|
|
SPROUT_CONSTEXPR_OR_CONST IntType sprout::random::linear_congruential_engine<IntType, a, c, m>::modulus;
|
2011-10-12 20:28:33 +00:00
|
|
|
template<typename IntType, IntType a, IntType c, IntType m>
|
2012-06-15 15:08:42 +00:00
|
|
|
SPROUT_CONSTEXPR_OR_CONST IntType sprout::random::linear_congruential_engine<IntType, a, c, m>::default_seed;
|
2011-10-12 20:28:33 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// minstd_rand0
|
|
|
|
//
|
|
|
|
typedef sprout::random::linear_congruential_engine<std::uint32_t, 16807, 0, 2147483647> minstd_rand0;
|
|
|
|
//
|
|
|
|
// minstd_rand
|
|
|
|
//
|
|
|
|
typedef sprout::random::linear_congruential_engine<std::uint32_t, 48271, 0, 2147483647> minstd_rand;
|
|
|
|
|
|
|
|
//
|
|
|
|
// rand48
|
|
|
|
//
|
|
|
|
class rand48 {
|
|
|
|
public:
|
|
|
|
typedef std::uint32_t result_type;
|
|
|
|
private:
|
|
|
|
struct private_constructor_tag {};
|
|
|
|
typedef sprout::random::linear_congruential_engine<
|
|
|
|
std::uint64_t,
|
|
|
|
std::uint64_t(0xDEECE66DUL) | (std::uint64_t(0x5) << 32),
|
|
|
|
0xB,
|
|
|
|
std::uint64_t(1) << 48
|
|
|
|
> lcf_type;
|
2011-10-18 15:18:58 +00:00
|
|
|
private:
|
2011-10-12 20:28:33 +00:00
|
|
|
static SPROUT_CONSTEXPR result_type static_min() {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
static SPROUT_CONSTEXPR result_type static_max() {
|
|
|
|
return 0x7FFFFFFF;
|
|
|
|
}
|
|
|
|
static SPROUT_CONSTEXPR std::uint64_t cnv(std::uint32_t x) {
|
|
|
|
return (static_cast<std::uint64_t>(x) << 16) | 0x330e;
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
lcf_type lcf_;
|
|
|
|
private:
|
|
|
|
SPROUT_CONSTEXPR rand48(lcf_type const& lcf, private_constructor_tag)
|
|
|
|
: lcf_(lcf)
|
|
|
|
{}
|
|
|
|
SPROUT_CONSTEXPR sprout::random::random_result<rand48> generate(
|
|
|
|
sprout::random::random_result<lcf_type> const& lcf_result
|
|
|
|
) const
|
|
|
|
{
|
|
|
|
return sprout::random::random_result<rand48>(
|
|
|
|
lcf_result.result() >> 17,
|
|
|
|
rand48(lcf_result.engine(), private_constructor_tag())
|
|
|
|
);
|
|
|
|
}
|
|
|
|
public:
|
|
|
|
SPROUT_CONSTEXPR rand48()
|
|
|
|
: lcf_(cnv(static_cast<std::uint32_t>(1)))
|
|
|
|
{}
|
2012-04-11 14:28:29 +00:00
|
|
|
explicit SPROUT_CONSTEXPR rand48(result_type const& x0)
|
2011-10-12 20:28:33 +00:00
|
|
|
: lcf_(cnv(x0))
|
|
|
|
{}
|
|
|
|
SPROUT_CONSTEXPR result_type min() const {
|
|
|
|
return static_min();
|
|
|
|
}
|
|
|
|
SPROUT_CONSTEXPR result_type max() const {
|
|
|
|
return static_max();
|
|
|
|
}
|
|
|
|
SPROUT_CONSTEXPR sprout::random::random_result<rand48> operator()() const {
|
|
|
|
return generate(lcf_());
|
|
|
|
}
|
|
|
|
friend SPROUT_CONSTEXPR bool operator==(rand48 const& lhs, rand48 const& rhs) {
|
|
|
|
return lhs.lcf_ == rhs.lcf_;
|
|
|
|
}
|
|
|
|
friend SPROUT_CONSTEXPR bool operator!=(rand48 const& lhs, rand48 const& rhs) {
|
|
|
|
return !(lhs == rhs);
|
|
|
|
}
|
|
|
|
template<typename Elem, typename Traits>
|
|
|
|
friend std::basic_istream<Elem, Traits>& operator>>(
|
|
|
|
std::basic_istream<Elem, Traits>& lhs,
|
2011-10-16 14:38:40 +00:00
|
|
|
rand48& rhs
|
2011-10-12 20:28:33 +00:00
|
|
|
)
|
|
|
|
{
|
|
|
|
return lhs >> rhs.lcf_;
|
|
|
|
}
|
|
|
|
template<typename Elem, typename Traits>
|
|
|
|
friend std::basic_ostream<Elem, Traits>& operator<<(
|
|
|
|
std::basic_ostream<Elem, Traits>& lhs,
|
|
|
|
rand48 const& rhs
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return lhs << rhs.lcf_;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
} // namespace random
|
|
|
|
|
2012-04-14 03:31:47 +00:00
|
|
|
using sprout::random::linear_congruential_engine;
|
2011-10-12 20:28:33 +00:00
|
|
|
using sprout::random::minstd_rand0;
|
|
|
|
using sprout::random::minstd_rand;
|
|
|
|
using sprout::random::rand48;
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_RANDOM_LINEAR_CONGRUENTIAL_HPP
|