123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267 |
- #ifndef BOOST_RANDOM_INVERSIVE_CONGRUENTIAL_HPP
- #define BOOST_RANDOM_INVERSIVE_CONGRUENTIAL_HPP
- #include <iosfwd>
- #include <stdexcept>
- #include <boost/assert.hpp>
- #include <boost/config.hpp>
- #include <boost/cstdint.hpp>
- #include <boost/integer/static_log2.hpp>
- #include <boost/random/detail/config.hpp>
- #include <boost/random/detail/const_mod.hpp>
- #include <boost/random/detail/seed.hpp>
- #include <boost/random/detail/operators.hpp>
- #include <boost/random/detail/seed_impl.hpp>
- #include <boost/random/detail/disable_warnings.hpp>
- namespace boost {
- namespace random {
- template<class IntType, IntType a, IntType b, IntType p>
- class inversive_congruential_engine
- {
- public:
- typedef IntType result_type;
- BOOST_STATIC_CONSTANT(bool, has_fixed_range = false);
- BOOST_STATIC_CONSTANT(result_type, multiplier = a);
- BOOST_STATIC_CONSTANT(result_type, increment = b);
- BOOST_STATIC_CONSTANT(result_type, modulus = p);
- BOOST_STATIC_CONSTANT(IntType, default_seed = 1);
- static result_type min BOOST_PREVENT_MACRO_SUBSTITUTION () { return b == 0 ? 1 : 0; }
- static result_type max BOOST_PREVENT_MACRO_SUBSTITUTION () { return p-1; }
-
-
- inversive_congruential_engine() { seed(); }
-
- BOOST_RANDOM_DETAIL_ARITHMETIC_CONSTRUCTOR(inversive_congruential_engine,
- IntType, x0)
- { seed(x0); }
-
-
- BOOST_RANDOM_DETAIL_SEED_SEQ_CONSTRUCTOR(inversive_congruential_engine,
- SeedSeq, seq)
- { seed(seq); }
-
-
- template<class It> inversive_congruential_engine(It& first, It last)
- { seed(first, last); }
-
- void seed() { seed(default_seed); }
-
-
- BOOST_RANDOM_DETAIL_ARITHMETIC_SEED(inversive_congruential_engine, IntType, x0)
- {
-
- if(modulus == 0) {
- _value = x0;
- } else {
- _value = x0 % modulus;
- }
-
- if(_value <= 0 && _value != 0) {
- _value += modulus;
- }
-
- if(increment == 0 && _value == 0) {
- _value = 1;
- }
- BOOST_ASSERT(_value >= (min)());
- BOOST_ASSERT(_value <= (max)());
- }
-
- BOOST_RANDOM_DETAIL_SEED_SEQ_SEED(inversive_congruential_engine, SeedSeq, seq)
- { seed(detail::seed_one_int<IntType, modulus>(seq)); }
-
-
- template<class It> void seed(It& first, It last)
- { seed(detail::get_one_int<IntType, modulus>(first, last)); }
-
- IntType operator()()
- {
- typedef const_mod<IntType, p> do_mod;
- _value = do_mod::mult_add(a, do_mod::invert(_value), b);
- return _value;
- }
-
-
- template<class Iter>
- void generate(Iter first, Iter last)
- { detail::generate_from_int(*this, first, last); }
-
- void discard(boost::uintmax_t z)
- {
- for(boost::uintmax_t j = 0; j < z; ++j) {
- (*this)();
- }
- }
-
- BOOST_RANDOM_DETAIL_OSTREAM_OPERATOR(os, inversive_congruential_engine, x)
- {
- os << x._value;
- return os;
- }
-
- BOOST_RANDOM_DETAIL_ISTREAM_OPERATOR(is, inversive_congruential_engine, x)
- {
- is >> x._value;
- return is;
- }
-
- BOOST_RANDOM_DETAIL_EQUALITY_OPERATOR(inversive_congruential_engine, x, y)
- { return x._value == y._value; }
-
- BOOST_RANDOM_DETAIL_INEQUALITY_OPERATOR(inversive_congruential_engine)
- private:
- IntType _value;
- };
- #ifndef BOOST_NO_INCLASS_MEMBER_INITIALIZATION
- template<class IntType, IntType a, IntType b, IntType p>
- const bool inversive_congruential_engine<IntType, a, b, p>::has_fixed_range;
- template<class IntType, IntType a, IntType b, IntType p>
- const typename inversive_congruential_engine<IntType, a, b, p>::result_type inversive_congruential_engine<IntType, a, b, p>::multiplier;
- template<class IntType, IntType a, IntType b, IntType p>
- const typename inversive_congruential_engine<IntType, a, b, p>::result_type inversive_congruential_engine<IntType, a, b, p>::increment;
- template<class IntType, IntType a, IntType b, IntType p>
- const typename inversive_congruential_engine<IntType, a, b, p>::result_type inversive_congruential_engine<IntType, a, b, p>::modulus;
- template<class IntType, IntType a, IntType b, IntType p>
- const typename inversive_congruential_engine<IntType, a, b, p>::result_type inversive_congruential_engine<IntType, a, b, p>::default_seed;
- #endif
- template<class IntType, IntType a, IntType b, IntType p, IntType val = 0>
- class inversive_congruential : public inversive_congruential_engine<IntType, a, b, p>
- {
- typedef inversive_congruential_engine<IntType, a, b, p> base_type;
- public:
- inversive_congruential(IntType x0 = 1) : base_type(x0) {}
- template<class It>
- inversive_congruential(It& first, It last) : base_type(first, last) {}
- };
- typedef inversive_congruential_engine<uint32_t, 9102, 2147483647-36884165,
- 2147483647> hellekalek1995;
- }
- using random::hellekalek1995;
- }
- #include <boost/random/detail/enable_warnings.hpp>
- #endif
|