2011-10-18 15:18:58 +00:00
|
|
|
#ifndef SPROUT_RANDOM_XOR_COMBINE_HPP
|
|
|
|
#define SPROUT_RANDOM_XOR_COMBINE_HPP
|
|
|
|
|
|
|
|
#include <ios>
|
|
|
|
#include <istream>
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/random/random_result.hpp>
|
2013-02-19 16:12:56 +00:00
|
|
|
#include HDR_ALGORITHM_MIN_MAX_SSCRISK_CEL_OR_SPROUT
|
2011-10-18 15:18:58 +00:00
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace random {
|
|
|
|
//
|
|
|
|
// xor_combine_engine
|
|
|
|
//
|
|
|
|
template<typename URNG1, int s1, typename URNG2, int s2>
|
|
|
|
class xor_combine_engine {
|
|
|
|
public:
|
|
|
|
typedef URNG1 base1_type;
|
|
|
|
typedef URNG2 base2_type;
|
2012-11-16 04:40:19 +00:00
|
|
|
typedef base1_type first_base;
|
|
|
|
typedef base2_type second_base;
|
2011-10-18 15:18:58 +00:00
|
|
|
typedef typename base1_type::result_type result_type;
|
|
|
|
public:
|
|
|
|
SPROUT_STATIC_CONSTEXPR int shift1 = s1;
|
|
|
|
SPROUT_STATIC_CONSTEXPR int shift2 = s2;
|
2012-11-16 04:40:19 +00:00
|
|
|
public:
|
|
|
|
static SPROUT_CONSTEXPR result_type static_min() SPROUT_NOEXCEPT {
|
|
|
|
return NS_SSCRISK_CEL_OR_SPROUT::min(base1_type::static_min(), base2_type::static_min());
|
|
|
|
}
|
|
|
|
static SPROUT_CONSTEXPR result_type static_max() SPROUT_NOEXCEPT {
|
|
|
|
return NS_SSCRISK_CEL_OR_SPROUT::max(base1_type::static_max(), base2_type::static_max());
|
|
|
|
}
|
2011-10-18 15:18:58 +00:00
|
|
|
private:
|
|
|
|
base1_type rng1_;
|
|
|
|
base2_type rng2_;
|
|
|
|
private:
|
|
|
|
template<typename Random1, typename Random2>
|
|
|
|
SPROUT_CONSTEXPR sprout::random::random_result<xor_combine_engine> generate(Random1 const& rnd1, Random2 const& rnd2) const {
|
|
|
|
return sprout::random::random_result<xor_combine_engine>(
|
|
|
|
(rnd1.result() << s1) ^ (rnd2.result() << s2),
|
|
|
|
xor_combine_engine(
|
|
|
|
rnd1.engine(),
|
|
|
|
rnd2.engine()
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
public:
|
|
|
|
SPROUT_CONSTEXPR xor_combine_engine()
|
|
|
|
: rng1_()
|
|
|
|
, rng2_()
|
|
|
|
{}
|
2012-04-11 14:28:29 +00:00
|
|
|
explicit SPROUT_CONSTEXPR xor_combine_engine(result_type const& seed)
|
2011-10-18 15:18:58 +00:00
|
|
|
: rng1_(seed)
|
|
|
|
, rng2_(seed)
|
|
|
|
{}
|
|
|
|
SPROUT_CONSTEXPR xor_combine_engine(base1_type const& rng1, base2_type const& rng2)
|
|
|
|
: rng1_(rng1)
|
|
|
|
, rng2_(rng2)
|
|
|
|
{}
|
2012-11-16 04:40:19 +00:00
|
|
|
SPROUT_CONSTEXPR result_type min() const SPROUT_NOEXCEPT {
|
2012-04-01 13:15:09 +00:00
|
|
|
return NS_SSCRISK_CEL_OR_SPROUT::min(rng1_.min(), rng2_.min());
|
2011-10-18 15:18:58 +00:00
|
|
|
}
|
2012-11-16 04:40:19 +00:00
|
|
|
SPROUT_CONSTEXPR result_type max() const SPROUT_NOEXCEPT {
|
2012-04-01 13:15:09 +00:00
|
|
|
return NS_SSCRISK_CEL_OR_SPROUT::max(rng1_.max(), rng2_.max());
|
2011-10-18 15:18:58 +00:00
|
|
|
}
|
|
|
|
SPROUT_CONSTEXPR sprout::random::random_result<xor_combine_engine> operator()() const {
|
|
|
|
return generate(rng1_(), rng2_());
|
|
|
|
}
|
2012-11-16 04:40:19 +00:00
|
|
|
SPROUT_CONSTEXPR base1_type const& base1() const SPROUT_NOEXCEPT {
|
|
|
|
return rng1_;
|
|
|
|
}
|
|
|
|
SPROUT_CONSTEXPR base2_type const& base2() const SPROUT_NOEXCEPT {
|
|
|
|
return rng2_;
|
|
|
|
}
|
|
|
|
friend SPROUT_CONSTEXPR bool operator==(xor_combine_engine const& lhs, xor_combine_engine const& rhs) SPROUT_NOEXCEPT {
|
2011-10-18 15:18:58 +00:00
|
|
|
return lhs.rng1_ == rhs.rng1_ && lhs.rng2_ == rhs.rng2_;
|
|
|
|
}
|
2012-11-16 04:40:19 +00:00
|
|
|
friend SPROUT_CONSTEXPR bool operator!=(xor_combine_engine const& lhs, xor_combine_engine const& rhs) SPROUT_NOEXCEPT {
|
2011-10-18 15:18:58 +00:00
|
|
|
return !(lhs == rhs);
|
|
|
|
}
|
|
|
|
template<typename Elem, typename Traits>
|
|
|
|
friend std::basic_istream<Elem, Traits>& operator>>(
|
|
|
|
std::basic_istream<Elem, Traits>& lhs,
|
|
|
|
xor_combine_engine& rhs
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return lhs >> rhs.rng1_ >> std::ws >> rhs.rng2_;
|
|
|
|
}
|
|
|
|
template<typename Elem, typename Traits>
|
|
|
|
friend std::basic_ostream<Elem, Traits>& operator<<(
|
|
|
|
std::basic_ostream<Elem, Traits>& lhs,
|
|
|
|
xor_combine_engine const& rhs
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return lhs << rhs.rng1_ << ' ' << rhs.rng2_;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
template<typename URNG1, int s1, typename URNG2, int s2>
|
2012-06-15 15:08:42 +00:00
|
|
|
SPROUT_CONSTEXPR_OR_CONST int sprout::random::xor_combine_engine<URNG1, s1, URNG2, s2>::shift1;
|
2011-10-18 15:18:58 +00:00
|
|
|
template<typename URNG1, int s1, typename URNG2, int s2>
|
2012-06-15 15:08:42 +00:00
|
|
|
SPROUT_CONSTEXPR_OR_CONST int sprout::random::xor_combine_engine<URNG1, s1, URNG2, s2>::shift2;
|
2013-03-22 05:24:19 +00:00
|
|
|
} // namespace random
|
2012-04-14 03:31:47 +00:00
|
|
|
|
|
|
|
using sprout::random::xor_combine_engine;
|
2013-03-22 05:24:19 +00:00
|
|
|
} // namespace sprout
|
2011-10-18 15:18:58 +00:00
|
|
|
|
2013-03-22 05:24:19 +00:00
|
|
|
#endif // #ifndef SPROUT_RANDOM_XOR_COMBINE_HPP
|