2011-10-18 13:28:32 +00:00
|
|
|
#ifndef SPROUT_RANDOM_INVERSIVE_CONGRUENTIAL_HPP
|
|
|
|
#define SPROUT_RANDOM_INVERSIVE_CONGRUENTIAL_HPP
|
|
|
|
|
|
|
|
#include <cstdint>
|
|
|
|
#include <limits>
|
|
|
|
#include <ios>
|
2012-11-15 09:36:55 +00:00
|
|
|
#include <type_traits>
|
2011-10-18 13:28:32 +00:00
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/random/detail/const_mod.hpp>
|
|
|
|
#include <sprout/random/random_result.hpp>
|
2013-03-18 10:12:21 +00:00
|
|
|
#include <sprout/math/comparison.hpp>
|
|
|
|
#include <sprout/assert.hpp>
|
2011-10-18 13:28:32 +00:00
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace random {
|
|
|
|
//
|
|
|
|
// inversive_congruential_engine
|
|
|
|
//
|
|
|
|
template<typename IntType, IntType a, IntType b, IntType p>
|
|
|
|
class inversive_congruential_engine {
|
|
|
|
public:
|
|
|
|
typedef IntType result_type;
|
|
|
|
private:
|
|
|
|
struct private_constructor_tag {};
|
|
|
|
public:
|
|
|
|
SPROUT_STATIC_CONSTEXPR IntType multiplier = a;
|
|
|
|
SPROUT_STATIC_CONSTEXPR IntType increment = b;
|
|
|
|
SPROUT_STATIC_CONSTEXPR IntType modulus = p;
|
|
|
|
SPROUT_STATIC_CONSTEXPR IntType default_seed = 1;
|
2012-11-16 04:40:19 +00:00
|
|
|
public:
|
|
|
|
static SPROUT_CONSTEXPR result_type static_min() SPROUT_NOEXCEPT {
|
2011-10-18 13:28:32 +00:00
|
|
|
return b == 0 ? 1 : 0;
|
|
|
|
}
|
2012-11-16 04:40:19 +00:00
|
|
|
static SPROUT_CONSTEXPR result_type static_max() SPROUT_NOEXCEPT {
|
2011-10-18 13:28:32 +00:00
|
|
|
return modulus - 1;
|
|
|
|
}
|
2013-03-18 10:12:21 +00:00
|
|
|
static SPROUT_CONSTEXPR IntType init_seed_3(IntType const& x0) {
|
|
|
|
return SPROUT_ASSERT(sprout::math::greater_equal(x0, static_min())), SPROUT_ASSERT(x0 <= static_max()), x0;
|
2011-10-18 13:28:32 +00:00
|
|
|
}
|
|
|
|
static SPROUT_CONSTEXPR IntType init_seed_2(IntType const& x0) {
|
2013-03-18 10:12:21 +00:00
|
|
|
return init_seed_3(increment == 0 && x0 == 0 ? 1 : x0);
|
2011-10-18 13:28:32 +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 inversive_congruential_engine(IntType const& x, private_constructor_tag)
|
|
|
|
: x_(x)
|
|
|
|
{}
|
2012-11-14 02:22:05 +00:00
|
|
|
SPROUT_CONSTEXPR sprout::random::random_result<inversive_congruential_engine>
|
|
|
|
generate(result_type result) const {
|
2011-10-18 13:28:32 +00:00
|
|
|
return sprout::random::random_result<inversive_congruential_engine>(
|
|
|
|
result,
|
|
|
|
inversive_congruential_engine(result, private_constructor_tag())
|
|
|
|
);
|
|
|
|
}
|
|
|
|
public:
|
|
|
|
SPROUT_CONSTEXPR inversive_congruential_engine()
|
|
|
|
: x_(init_seed(default_seed))
|
|
|
|
{}
|
2012-04-11 14:28:29 +00:00
|
|
|
explicit SPROUT_CONSTEXPR inversive_congruential_engine(IntType const& x0)
|
2011-10-18 13:28:32 +00:00
|
|
|
: x_(init_seed(x0))
|
|
|
|
{}
|
2012-11-16 04:40:19 +00:00
|
|
|
SPROUT_CONSTEXPR result_type min() const SPROUT_NOEXCEPT {
|
2011-10-18 13:28:32 +00:00
|
|
|
return static_min();
|
|
|
|
}
|
2012-11-16 04:40:19 +00:00
|
|
|
SPROUT_CONSTEXPR result_type max() const SPROUT_NOEXCEPT {
|
2011-10-18 13:28:32 +00:00
|
|
|
return static_max();
|
|
|
|
}
|
|
|
|
SPROUT_CONSTEXPR sprout::random::random_result<inversive_congruential_engine> operator()() const {
|
|
|
|
typedef sprout::random::detail::const_mod<IntType, p> do_mod;
|
|
|
|
return generate(do_mod::mult_add(a, do_mod::invert(x_), b));
|
|
|
|
}
|
2012-11-16 04:40:19 +00:00
|
|
|
friend SPROUT_CONSTEXPR bool operator==(inversive_congruential_engine const& lhs, inversive_congruential_engine const& rhs) SPROUT_NOEXCEPT {
|
2011-10-18 13:28:32 +00:00
|
|
|
return lhs.x_ == rhs.x_;
|
|
|
|
}
|
2012-11-16 04:40:19 +00:00
|
|
|
friend SPROUT_CONSTEXPR bool operator!=(inversive_congruential_engine const& lhs, inversive_congruential_engine const& rhs) SPROUT_NOEXCEPT {
|
2011-10-18 13:28:32 +00:00
|
|
|
return !(lhs == rhs);
|
|
|
|
}
|
|
|
|
template<typename Elem, typename Traits>
|
|
|
|
friend std::basic_istream<Elem, Traits>& operator>>(
|
|
|
|
std::basic_istream<Elem, Traits>& lhs,
|
|
|
|
inversive_congruential_engine& rhs
|
|
|
|
)
|
|
|
|
{
|
|
|
|
IntType x;
|
|
|
|
if (lhs >> x) {
|
2013-03-18 10:12:21 +00:00
|
|
|
if (sprout::math::greater_equal(x, static_min()) && x <= static_max()) {
|
2011-10-18 13:28:32 +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,
|
|
|
|
inversive_congruential_engine const& rhs
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return lhs << rhs.x_;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
template<typename IntType, IntType a, IntType b, IntType p>
|
2012-06-15 15:08:42 +00:00
|
|
|
SPROUT_CONSTEXPR_OR_CONST IntType sprout::random::inversive_congruential_engine<IntType, a, b, p>::multiplier;
|
2011-10-18 13:28:32 +00:00
|
|
|
template<typename IntType, IntType a, IntType b, IntType p>
|
2012-06-15 15:08:42 +00:00
|
|
|
SPROUT_CONSTEXPR_OR_CONST IntType sprout::random::inversive_congruential_engine<IntType, a, b, p>::increment;
|
2011-10-18 13:28:32 +00:00
|
|
|
template<typename IntType, IntType a, IntType b, IntType p>
|
2012-06-15 15:08:42 +00:00
|
|
|
SPROUT_CONSTEXPR_OR_CONST IntType sprout::random::inversive_congruential_engine<IntType, a, b, p>::modulus;
|
2011-10-18 13:28:32 +00:00
|
|
|
template<typename IntType, IntType a, IntType b, IntType p>
|
2012-06-15 15:08:42 +00:00
|
|
|
SPROUT_CONSTEXPR_OR_CONST IntType sprout::random::inversive_congruential_engine<IntType, a, b, p>::default_seed;
|
2011-10-18 13:28:32 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// hellekalek1995
|
|
|
|
//
|
|
|
|
typedef sprout::random::inversive_congruential_engine<std::uint32_t, 9102, 2147483647 - 36884165, 2147483647> hellekalek1995;
|
2013-03-22 05:24:19 +00:00
|
|
|
} // namespace random
|
2011-10-18 13:28:32 +00:00
|
|
|
|
2012-04-14 03:31:47 +00:00
|
|
|
using sprout::random::inversive_congruential_engine;
|
2011-10-18 13:28:32 +00:00
|
|
|
using sprout::random::hellekalek1995;
|
2013-03-22 05:24:19 +00:00
|
|
|
} // namespace sprout
|
2011-10-18 13:28:32 +00:00
|
|
|
|
2013-03-22 05:24:19 +00:00
|
|
|
#endif // #ifndef SPROUT_RANDOM_INVERSIVE_CONGRUENTIAL_HPP
|