123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210 |
- #ifndef BOOST_RANDOM_XOR_COMBINE_HPP
- #define BOOST_RANDOM_XOR_COMBINE_HPP
- #include <istream>
- #include <iosfwd>
- #include <cassert>
- #include <algorithm> // for std::min and std::max
- #include <boost/config.hpp>
- #include <boost/limits.hpp>
- #include <boost/cstdint.hpp> // uint32_t
- #include <boost/random/detail/config.hpp>
- #include <boost/random/detail/seed.hpp>
- #include <boost/random/detail/seed_impl.hpp>
- #include <boost/random/detail/operators.hpp>
- namespace boost {
- namespace random {
- template<class URNG1, int s1, class URNG2, int s2>
- class xor_combine_engine
- {
- public:
- typedef URNG1 base1_type;
- typedef URNG2 base2_type;
- typedef typename base1_type::result_type result_type;
- BOOST_STATIC_CONSTANT(bool, has_fixed_range = false);
- BOOST_STATIC_CONSTANT(int, shift1 = s1);
- BOOST_STATIC_CONSTANT(int, shift2 = s2);
-
- xor_combine_engine() : _rng1(), _rng2() { }
-
- xor_combine_engine(const base1_type & rng1, const base2_type & rng2)
- : _rng1(rng1), _rng2(rng2) { }
-
- BOOST_RANDOM_DETAIL_ARITHMETIC_CONSTRUCTOR(xor_combine_engine,
- result_type, v)
- { seed(v); }
-
- BOOST_RANDOM_DETAIL_SEED_SEQ_CONSTRUCTOR(xor_combine_engine,
- SeedSeq, seq)
- { seed(seq); }
-
- template<class It> xor_combine_engine(It& first, It last)
- : _rng1(first, last), _rng2( first, last) { }
-
- void seed() { _rng1.seed(); _rng2.seed(); }
-
- BOOST_RANDOM_DETAIL_ARITHMETIC_SEED(xor_combine_engine, result_type, v)
- { _rng1.seed(v); _rng2.seed(v); }
-
- BOOST_RANDOM_DETAIL_SEED_SEQ_SEED(xor_combine_engine, SeedSeq, seq)
- { _rng1.seed(seq); _rng2.seed(seq); }
-
- template<class It> void seed(It& first, It last)
- {
- _rng1.seed(first, last);
- _rng2.seed(first, last);
- }
-
- const base1_type& base1() const { return _rng1; }
-
- const base2_type& base2() const { return _rng2; }
-
- result_type operator()()
- {
- return (_rng1() << s1) ^ (_rng2() << s2);
- }
-
-
- template<class Iter>
- void generate(Iter first, Iter last)
- { detail::generate_from_int(*this, first, last); }
-
- void discard(boost::uintmax_t z)
- {
- _rng1.discard(z);
- _rng2.discard(z);
- }
-
- static BOOST_CONSTEXPR result_type min BOOST_PREVENT_MACRO_SUBSTITUTION ()
- { return (URNG1::min)()<(URNG2::min)()?(URNG1::min)():(URNG2::min)(); }
-
- static BOOST_CONSTEXPR result_type max BOOST_PREVENT_MACRO_SUBSTITUTION ()
- { return (URNG1::max)()>(URNG2::max)()?(URNG1::max)():(URNG2::max)(); }
-
- BOOST_RANDOM_DETAIL_OSTREAM_OPERATOR(os, xor_combine_engine, s)
- {
- os << s._rng1 << ' ' << s._rng2;
- return os;
- }
-
-
- BOOST_RANDOM_DETAIL_ISTREAM_OPERATOR(is, xor_combine_engine, s)
- {
- is >> s._rng1 >> std::ws >> s._rng2;
- return is;
- }
-
-
- BOOST_RANDOM_DETAIL_EQUALITY_OPERATOR(xor_combine_engine, x, y)
- { return x._rng1 == y._rng1 && x._rng2 == y._rng2; }
-
-
- BOOST_RANDOM_DETAIL_INEQUALITY_OPERATOR(xor_combine_engine)
- private:
- base1_type _rng1;
- base2_type _rng2;
- };
- #ifndef BOOST_NO_INCLASS_MEMBER_INITIALIZATION
- template<class URNG1, int s1, class URNG2, int s2>
- const bool xor_combine_engine<URNG1, s1, URNG2, s2>::has_fixed_range;
- template<class URNG1, int s1, class URNG2, int s2>
- const int xor_combine_engine<URNG1, s1, URNG2, s2>::shift1;
- template<class URNG1, int s1, class URNG2, int s2>
- const int xor_combine_engine<URNG1, s1, URNG2, s2>::shift2;
- #endif
- template<class URNG1, int s1, class URNG2, int s2,
- typename URNG1::result_type v = 0>
- class xor_combine : public xor_combine_engine<URNG1, s1, URNG2, s2>
- {
- typedef xor_combine_engine<URNG1, s1, URNG2, s2> base_type;
- public:
- typedef typename base_type::result_type result_type;
- xor_combine() {}
- xor_combine(result_type val) : base_type(val) {}
- template<class It>
- xor_combine(It& first, It last) : base_type(first, last) {}
- xor_combine(const URNG1 & rng1, const URNG2 & rng2)
- : base_type(rng1, rng2) { }
- result_type min BOOST_PREVENT_MACRO_SUBSTITUTION () const { return (std::min)((this->base1().min)(), (this->base2().min)()); }
- result_type max BOOST_PREVENT_MACRO_SUBSTITUTION () const { return (std::max)((this->base1().min)(), (this->base2().max)()); }
- };
- }
- }
- #endif
|