2011-10-14 12:23:13 +00:00
|
|
|
#ifndef SPROUT_RANDOM_GEOMETRIC_DISTRIBUTION_HPP
|
|
|
|
#define SPROUT_RANDOM_GEOMETRIC_DISTRIBUTION_HPP
|
|
|
|
|
|
|
|
#include <ios>
|
|
|
|
#include <limits>
|
|
|
|
#include <sprout/config.hpp>
|
2012-05-09 01:15:19 +00:00
|
|
|
#include <sprout/math/log.hpp>
|
2012-07-04 15:09:44 +00:00
|
|
|
#include <sprout/math/floor.hpp>
|
2011-10-14 12:23:13 +00:00
|
|
|
#include <sprout/random/random_result.hpp>
|
|
|
|
#include <sprout/random/uniform_01.hpp>
|
2013-03-18 10:12:21 +00:00
|
|
|
#include <sprout/assert.hpp>
|
2011-10-14 12:23:13 +00:00
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace random {
|
|
|
|
//
|
|
|
|
// geometric_distribution
|
|
|
|
//
|
|
|
|
template<typename IntType = int, typename RealType = double>
|
|
|
|
class geometric_distribution {
|
|
|
|
public:
|
|
|
|
typedef RealType input_type;
|
|
|
|
typedef IntType result_type;
|
|
|
|
public:
|
|
|
|
//
|
|
|
|
// param_type
|
|
|
|
//
|
|
|
|
class param_type {
|
|
|
|
public:
|
|
|
|
typedef geometric_distribution distribution_type;
|
|
|
|
private:
|
|
|
|
RealType p_;
|
|
|
|
public:
|
|
|
|
SPROUT_CONSTEXPR param_type()
|
|
|
|
: p_(RealType(0.5))
|
|
|
|
{}
|
2012-04-11 14:28:29 +00:00
|
|
|
explicit SPROUT_CONSTEXPR param_type(RealType p_arg)
|
2013-03-18 10:12:21 +00:00
|
|
|
: p_((SPROUT_ASSERT(RealType(0) < p_arg), SPROUT_ASSERT(p_arg < RealType(1)), p_arg))
|
2011-10-14 12:23:13 +00:00
|
|
|
{}
|
2012-11-16 04:40:19 +00:00
|
|
|
SPROUT_CONSTEXPR RealType p() const SPROUT_NOEXCEPT {
|
2011-10-14 12:23:13 +00:00
|
|
|
return p_;
|
|
|
|
}
|
|
|
|
template<typename Elem, typename Traits>
|
2011-10-17 04:44:19 +00:00
|
|
|
friend std::basic_istream<Elem, Traits>& operator>>(
|
2011-10-14 12:23:13 +00:00
|
|
|
std::basic_istream<Elem, Traits>& lhs,
|
2011-10-17 04:44:19 +00:00
|
|
|
param_type& rhs
|
2011-10-14 12:23:13 +00:00
|
|
|
)
|
|
|
|
{
|
|
|
|
RealType p;
|
|
|
|
if (lhs >> p) {
|
2013-03-18 10:12:21 +00:00
|
|
|
if (RealType(0) < p && p < RealType(1)) {
|
2011-10-14 12:23:13 +00:00
|
|
|
rhs.p_ = p;
|
|
|
|
} 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,
|
|
|
|
param_type const& rhs
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return lhs << rhs.p_;
|
|
|
|
}
|
2012-11-16 04:40:19 +00:00
|
|
|
friend SPROUT_CONSTEXPR bool operator==(param_type const& lhs, param_type const& rhs) SPROUT_NOEXCEPT {
|
2011-10-14 12:23:13 +00:00
|
|
|
return lhs.p_ == rhs.p_;
|
|
|
|
}
|
2012-11-16 04:40:19 +00:00
|
|
|
friend SPROUT_CONSTEXPR bool operator!=(param_type const& lhs, param_type const& rhs) SPROUT_NOEXCEPT {
|
2011-10-14 12:23:13 +00:00
|
|
|
return !(lhs == rhs);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
private:
|
|
|
|
public:
|
|
|
|
static SPROUT_CONSTEXPR RealType init_log_1mp(RealType p) {
|
2013-04-24 13:48:36 +00:00
|
|
|
return sprout::math::log(1 - p);
|
2011-10-14 12:23:13 +00:00
|
|
|
}
|
|
|
|
private:
|
|
|
|
public:
|
|
|
|
RealType p_;
|
|
|
|
RealType log_1mp_;
|
|
|
|
private:
|
|
|
|
template<typename Engine, typename Random>
|
|
|
|
SPROUT_CONSTEXPR sprout::random::random_result<Engine, geometric_distribution> generate_1(Random const& rnd) const {
|
|
|
|
return sprout::random::random_result<Engine, geometric_distribution>(
|
2013-05-06 14:57:38 +00:00
|
|
|
static_cast<IntType>(sprout::math::floor(sprout::math::log(RealType(1) - rnd.result()) / log_1mp_)),
|
2011-10-14 12:23:13 +00:00
|
|
|
rnd.engine(),
|
|
|
|
*this
|
|
|
|
);
|
|
|
|
}
|
|
|
|
template<typename Engine>
|
|
|
|
SPROUT_CONSTEXPR sprout::random::random_result<Engine, geometric_distribution> generate(Engine const& eng) const {
|
|
|
|
return generate_1<Engine>(sprout::random::uniform_01<RealType>()(eng));
|
|
|
|
}
|
|
|
|
public:
|
|
|
|
SPROUT_CONSTEXPR geometric_distribution()
|
|
|
|
: p_(RealType(0.5))
|
|
|
|
, log_1mp_(init_log_1mp(RealType(0.5)))
|
|
|
|
{}
|
2012-04-11 14:28:29 +00:00
|
|
|
explicit SPROUT_CONSTEXPR geometric_distribution(RealType p_arg)
|
2013-03-18 10:12:21 +00:00
|
|
|
: p_((SPROUT_ASSERT(RealType(0) < p_arg), SPROUT_ASSERT(p_arg < RealType(1)), p_arg))
|
2011-10-14 12:23:13 +00:00
|
|
|
, log_1mp_(init_log_1mp(p_arg))
|
|
|
|
{}
|
2012-04-11 14:28:29 +00:00
|
|
|
explicit SPROUT_CONSTEXPR geometric_distribution(param_type const& parm)
|
2011-10-14 12:23:13 +00:00
|
|
|
: p_(parm.p())
|
|
|
|
, log_1mp_(init_log_1mp(parm.p()))
|
|
|
|
{}
|
2012-11-16 04:40:19 +00:00
|
|
|
SPROUT_CONSTEXPR result_type p() const SPROUT_NOEXCEPT {
|
2011-10-14 12:23:13 +00:00
|
|
|
return p_;
|
|
|
|
}
|
2012-11-16 04:40:19 +00:00
|
|
|
SPROUT_CONSTEXPR result_type min() const SPROUT_NOEXCEPT {
|
2011-10-14 12:23:13 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2012-11-16 04:40:19 +00:00
|
|
|
SPROUT_CONSTEXPR result_type max() const SPROUT_NOEXCEPT {
|
2011-10-14 12:23:13 +00:00
|
|
|
return std::numeric_limits<result_type>::max();
|
|
|
|
}
|
2012-11-16 04:40:19 +00:00
|
|
|
SPROUT_CONSTEXPR param_type param() const SPROUT_NOEXCEPT {
|
2011-10-14 12:23:13 +00:00
|
|
|
return param_type(p_);
|
|
|
|
}
|
|
|
|
void param(param_type const& parm) {
|
|
|
|
p_ = parm.p();
|
|
|
|
log_1mp_ = init_log_1mp(p_);
|
|
|
|
}
|
|
|
|
template<typename Engine>
|
|
|
|
SPROUT_CONSTEXPR sprout::random::random_result<Engine, geometric_distribution> operator()(Engine const& eng) const {
|
|
|
|
return generate(eng);
|
|
|
|
}
|
|
|
|
template<typename Elem, typename Traits>
|
2011-10-17 04:44:19 +00:00
|
|
|
friend std::basic_istream<Elem, Traits>& operator>>(
|
2011-10-14 12:23:13 +00:00
|
|
|
std::basic_istream<Elem, Traits>& lhs,
|
2011-10-17 04:44:19 +00:00
|
|
|
geometric_distribution& rhs
|
2011-10-14 12:23:13 +00:00
|
|
|
)
|
|
|
|
{
|
|
|
|
param_type parm;
|
2011-10-19 13:47:59 +00:00
|
|
|
if (lhs >> parm) {
|
|
|
|
rhs.param(parm);
|
|
|
|
}
|
2011-10-14 12:23:13 +00:00
|
|
|
return lhs;
|
|
|
|
}
|
|
|
|
template<typename Elem, typename Traits>
|
|
|
|
friend std::basic_ostream<Elem, Traits>& operator<<(
|
|
|
|
std::basic_ostream<Elem, Traits>& lhs,
|
|
|
|
geometric_distribution const& rhs
|
|
|
|
)
|
|
|
|
{
|
2011-10-17 04:44:19 +00:00
|
|
|
return lhs << rhs.param();
|
2011-10-14 12:23:13 +00:00
|
|
|
}
|
2012-11-16 04:40:19 +00:00
|
|
|
friend SPROUT_CONSTEXPR bool operator==(geometric_distribution const& lhs, geometric_distribution const& rhs) SPROUT_NOEXCEPT {
|
2011-10-14 12:23:13 +00:00
|
|
|
return lhs.param() == rhs.param();
|
|
|
|
}
|
2012-11-16 04:40:19 +00:00
|
|
|
friend SPROUT_CONSTEXPR bool operator!=(geometric_distribution const& lhs, geometric_distribution const& rhs) SPROUT_NOEXCEPT {
|
2011-10-14 12:23:13 +00:00
|
|
|
return !(lhs == rhs);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
} // namespace random
|
|
|
|
|
|
|
|
using sprout::random::geometric_distribution;
|
|
|
|
} // namespace sprout
|
|
|
|
|
2013-03-22 05:24:19 +00:00
|
|
|
#endif // #ifndef SPROUT_RANDOM_GEOMETRIC_DISTRIBUTION_HPP
|