123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883 |
- #ifndef BOOST_RANDOM_HYPEREXPONENTIAL_DISTRIBUTION_HPP
- #define BOOST_RANDOM_HYPEREXPONENTIAL_DISTRIBUTION_HPP
- #include <boost/config.hpp>
- #include <boost/math/special_functions/fpclassify.hpp>
- #include <boost/random/detail/operators.hpp>
- #include <boost/random/detail/vector_io.hpp>
- #include <boost/random/discrete_distribution.hpp>
- #include <boost/random/exponential_distribution.hpp>
- #include <boost/range/begin.hpp>
- #include <boost/range/end.hpp>
- #include <boost/range/size.hpp>
- #include <boost/type_traits/has_pre_increment.hpp>
- #include <cassert>
- #include <cmath>
- #include <cstddef>
- #include <iterator>
- #ifndef BOOST_NO_CXX11_HDR_INITIALIZER_LIST
- # include <initializer_list>
- #endif
- #include <iostream>
- #include <limits>
- #include <numeric>
- #include <vector>
- namespace boost { namespace random {
- namespace hyperexp_detail {
- template <typename T>
- std::vector<T>& normalize(std::vector<T>& v)
- {
- if (v.size() == 0)
- {
- return v;
- }
- const T sum = std::accumulate(v.begin(), v.end(), static_cast<T>(0));
- T final_sum = 0;
- const typename std::vector<T>::iterator end = --v.end();
- for (typename std::vector<T>::iterator it = v.begin();
- it != end;
- ++it)
- {
- *it /= sum;
- final_sum += *it;
- }
- *end = 1-final_sum;
- return v;
- }
- template <typename RealT>
- bool check_probabilities(std::vector<RealT> const& probabilities)
- {
- const std::size_t n = probabilities.size();
- RealT sum = 0;
- for (std::size_t i = 0; i < n; ++i)
- {
- if (probabilities[i] < 0
- || probabilities[i] > 1
- || !(boost::math::isfinite)(probabilities[i]))
- {
- return false;
- }
- sum += probabilities[i];
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
- return true;
- }
- template <typename RealT>
- bool check_rates(std::vector<RealT> const& rates)
- {
- const std::size_t n = rates.size();
- for (std::size_t i = 0; i < n; ++i)
- {
- if (rates[i] <= 0
- || !(boost::math::isfinite)(rates[i]))
- {
- return false;
- }
- }
- return true;
- }
- template <typename RealT>
- bool check_params(std::vector<RealT> const& probabilities, std::vector<RealT> const& rates)
- {
- if (probabilities.size() != rates.size())
- {
- return false;
- }
- return check_probabilities(probabilities)
- && check_rates(rates);
- }
- }
- template<class RealT = double>
- class hyperexponential_distribution
- {
- public: typedef RealT result_type;
- public: typedef RealT input_type;
-
- public: class param_type
- {
- public: typedef hyperexponential_distribution distribution_type;
-
- public: param_type()
- : probs_(1, 1),
- rates_(1, 1)
- {
- }
-
- public: template <typename ProbIterT, typename RateIterT>
- param_type(ProbIterT prob_first, ProbIterT prob_last,
- RateIterT rate_first, RateIterT rate_last)
- : probs_(prob_first, prob_last),
- rates_(rate_first, rate_last)
- {
- hyperexp_detail::normalize(probs_);
- assert( hyperexp_detail::check_params(probs_, rates_) );
- }
-
-
-
- public: template <typename ProbRangeT, typename RateRangeT>
- param_type(ProbRangeT const& prob_range,
- RateRangeT const& rate_range,
- typename boost::disable_if_c<boost::has_pre_increment<ProbRangeT>::value || boost::has_pre_increment<RateRangeT>::value>::type* = 0)
- : probs_(boost::begin(prob_range), boost::end(prob_range)),
- rates_(boost::begin(rate_range), boost::end(rate_range))
- {
- hyperexp_detail::normalize(probs_);
- assert( hyperexp_detail::check_params(probs_, rates_) );
- }
-
-
-
- public: template <typename RateIterT>
- param_type(RateIterT rate_first,
- RateIterT rate_last,
- typename boost::enable_if_c<boost::has_pre_increment<RateIterT>::value>::type* = 0)
- : probs_(std::distance(rate_first, rate_last), 1),
- rates_(rate_first, rate_last)
- {
- assert(probs_.size() == rates_.size());
- }
-
- public: template <typename RateRangeT>
- param_type(RateRangeT const& rate_range)
- : probs_(boost::size(rate_range), 1),
- rates_(boost::begin(rate_range), boost::end(rate_range))
- {
- hyperexp_detail::normalize(probs_);
- assert( hyperexp_detail::check_params(probs_, rates_) );
- }
- #ifndef BOOST_NO_CXX11_HDR_INITIALIZER_LIST
-
- public: param_type(std::initializer_list<RealT> l1, std::initializer_list<RealT> l2)
- : probs_(l1.begin(), l1.end()),
- rates_(l2.begin(), l2.end())
- {
- hyperexp_detail::normalize(probs_);
- assert( hyperexp_detail::check_params(probs_, rates_) );
- }
-
- public: param_type(std::initializer_list<RealT> l1)
- : probs_(std::distance(l1.begin(), l1.end()), 1),
- rates_(l1.begin(), l1.end())
- {
- hyperexp_detail::normalize(probs_);
- assert( hyperexp_detail::check_params(probs_, rates_) );
- }
- #endif
-
- public: std::vector<RealT> probabilities() const
- {
- return probs_;
- }
-
- public: std::vector<RealT> rates() const
- {
- return rates_;
- }
-
- public: BOOST_RANDOM_DETAIL_OSTREAM_OPERATOR(os, param_type, param)
- {
- detail::print_vector(os, param.probs_);
- os << ' ';
- detail::print_vector(os, param.rates_);
- return os;
- }
-
- public: BOOST_RANDOM_DETAIL_ISTREAM_OPERATOR(is, param_type, param)
- {
-
-
-
-
-
-
-
- std::vector<RealT> probs;
- std::vector<RealT> rates;
-
- detail::read_vector(is, probs);
- if (!is)
- {
- return is;
- }
- is >> std::ws;
- detail::read_vector(is, rates);
- if (!is)
- {
- return is;
- }
-
- if (probs.size() > 0)
- {
- param.probs_.swap(probs);
- probs.clear();
- }
- if (rates.size() > 0)
- {
- param.rates_.swap(rates);
- rates.clear();
- }
- bool fail = false;
-
- if (param.probs_.size() != param.rates_.size()
- || param.probs_.size() == 0)
- {
- fail = true;
- const std::size_t np = param.probs_.size();
- const std::size_t nr = param.rates_.size();
- if (np > nr)
- {
- param.rates_.resize(np, 1);
- }
- else if (nr > np)
- {
- param.probs_.resize(nr, 1);
- }
- else
- {
- param.probs_.resize(1, 1);
- param.rates_.resize(1, 1);
- }
- }
-
-
-
- hyperexp_detail::normalize(param.probs_);
-
- if (fail)
- {
-
- is.setstate(std::ios_base::failbit);
- }
-
- assert(param.probs_.size() == param.rates_.size());
- return is;
- }
-
- public: BOOST_RANDOM_DETAIL_EQUALITY_OPERATOR(param_type, lhs, rhs)
- {
- return lhs.probs_ == rhs.probs_
- && lhs.rates_ == rhs.rates_;
- }
-
-
- public: BOOST_RANDOM_DETAIL_INEQUALITY_OPERATOR(param_type)
- private: std::vector<RealT> probs_;
- private: std::vector<RealT> rates_;
- };
-
- public: hyperexponential_distribution()
- : dd_(std::vector<RealT>(1, 1)),
- rates_(1, 1)
- {
-
- }
-
- public: template <typename ProbIterT, typename RateIterT>
- hyperexponential_distribution(ProbIterT prob_first, ProbIterT prob_last,
- RateIterT rate_first, RateIterT rate_last)
- : dd_(prob_first, prob_last),
- rates_(rate_first, rate_last)
- {
- assert( hyperexp_detail::check_params(dd_.probabilities(), rates_) );
- }
-
-
-
- public: template <typename ProbRangeT, typename RateRangeT>
- hyperexponential_distribution(ProbRangeT const& prob_range,
- RateRangeT const& rate_range,
- typename boost::disable_if_c<boost::has_pre_increment<ProbRangeT>::value || boost::has_pre_increment<RateRangeT>::value>::type* = 0)
- : dd_(prob_range),
- rates_(boost::begin(rate_range), boost::end(rate_range))
- {
- assert( hyperexp_detail::check_params(dd_.probabilities(), rates_) );
- }
-
-
-
- public: template <typename RateIterT>
- hyperexponential_distribution(RateIterT rate_first,
- RateIterT rate_last,
- typename boost::enable_if_c<boost::has_pre_increment<RateIterT>::value>::type* = 0)
- : dd_(std::vector<RealT>(std::distance(rate_first, rate_last), 1)),
- rates_(rate_first, rate_last)
- {
- assert( hyperexp_detail::check_params(dd_.probabilities(), rates_) );
- }
-
- public: template <typename RateRangeT>
- hyperexponential_distribution(RateRangeT const& rate_range)
- : dd_(std::vector<RealT>(boost::size(rate_range), 1)),
- rates_(boost::begin(rate_range), boost::end(rate_range))
- {
- assert( hyperexp_detail::check_params(dd_.probabilities(), rates_) );
- }
-
- public: explicit hyperexponential_distribution(param_type const& param)
- : dd_(param.probabilities()),
- rates_(param.rates())
- {
- assert( hyperexp_detail::check_params(dd_.probabilities(), rates_) );
- }
- #ifndef BOOST_NO_CXX11_HDR_INITIALIZER_LIST
-
- public: hyperexponential_distribution(std::initializer_list<RealT> const& l1, std::initializer_list<RealT> const& l2)
- : dd_(l1.begin(), l1.end()),
- rates_(l2.begin(), l2.end())
- {
- assert( hyperexp_detail::check_params(dd_.probabilities(), rates_) );
- }
-
- public: hyperexponential_distribution(std::initializer_list<RealT> const& l1)
- : dd_(std::vector<RealT>(std::distance(l1.begin(), l1.end()), 1)),
- rates_(l1.begin(), l1.end())
- {
- assert( hyperexp_detail::check_params(dd_.probabilities(), rates_) );
- }
- #endif
-
- public: template<class URNG>\
- RealT operator()(URNG& urng) const
- {
- const int i = dd_(urng);
- return boost::random::exponential_distribution<RealT>(rates_[i])(urng);
- }
-
- public: template<class URNG>
- RealT operator()(URNG& urng, const param_type& param) const
- {
- return hyperexponential_distribution(param)(urng);
- }
-
- public: std::size_t num_phases() const
- {
- return rates_.size();
- }
-
- public: std::vector<RealT> probabilities() const
- {
- return dd_.probabilities();
- }
-
- public: std::vector<RealT> rates() const
- {
- return rates_;
- }
-
- public: RealT min BOOST_PREVENT_MACRO_SUBSTITUTION () const
- {
- return 0;
- }
-
- public: RealT max BOOST_PREVENT_MACRO_SUBSTITUTION () const
- {
- return std::numeric_limits<RealT>::infinity();
- }
-
- public: param_type param() const
- {
- std::vector<RealT> probs = dd_.probabilities();
- return param_type(probs.begin(), probs.end(), rates_.begin(), rates_.end());
- }
-
- public: void param(param_type const& param)
- {
- dd_.param(typename boost::random::discrete_distribution<int,RealT>::param_type(param.probabilities()));
- rates_ = param.rates();
- }
-
- public: void reset()
- {
-
- }
-
- public: BOOST_RANDOM_DETAIL_OSTREAM_OPERATOR(os, hyperexponential_distribution, hd)
- {
- os << hd.param();
- return os;
- }
-
- public: BOOST_RANDOM_DETAIL_ISTREAM_OPERATOR(is, hyperexponential_distribution, hd)
- {
- param_type param;
- if(is >> param)
- {
- hd.param(param);
- }
- return is;
- }
-
- public: BOOST_RANDOM_DETAIL_EQUALITY_OPERATOR(hyperexponential_distribution, lhs, rhs)
- {
- return lhs.dd_ == rhs.dd_
- && lhs.rates_ == rhs.rates_;
- }
-
-
- public: BOOST_RANDOM_DETAIL_INEQUALITY_OPERATOR(hyperexponential_distribution)
- private: boost::random::discrete_distribution<int,RealT> dd_;
- private: std::vector<RealT> rates_;
- };
- }}
- #endif
|