123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232 |
- #ifndef BOOST_RANDOM_TRIANGLE_DISTRIBUTION_HPP
- #define BOOST_RANDOM_TRIANGLE_DISTRIBUTION_HPP
- #include <boost/config/no_tr1/cmath.hpp>
- #include <iosfwd>
- #include <ios>
- #include <istream>
- #include <boost/assert.hpp>
- #include <boost/random/detail/config.hpp>
- #include <boost/random/detail/operators.hpp>
- #include <boost/random/uniform_01.hpp>
- namespace boost {
- namespace random {
- template<class RealType = double>
- class triangle_distribution
- {
- public:
- typedef RealType input_type;
- typedef RealType result_type;
- class param_type
- {
- public:
- typedef triangle_distribution distribution_type;
-
- explicit param_type(RealType a_arg = RealType(0.0),
- RealType b_arg = RealType(0.5),
- RealType c_arg = RealType(1.0))
- : _a(a_arg), _b(b_arg), _c(c_arg)
- {
- BOOST_ASSERT(_a <= _b && _b <= _c);
- }
-
- RealType a() const { return _a; }
-
- RealType b() const { return _b; }
-
- RealType c() const { return _c; }
-
- BOOST_RANDOM_DETAIL_OSTREAM_OPERATOR(os, param_type, parm)
- {
- os << parm._a << " " << parm._b << " " << parm._c;
- return os;
- }
-
- BOOST_RANDOM_DETAIL_ISTREAM_OPERATOR(is, param_type, parm)
- {
- double a_in, b_in, c_in;
- if(is >> a_in >> std::ws >> b_in >> std::ws >> c_in) {
- if(a_in <= b_in && b_in <= c_in) {
- parm._a = a_in;
- parm._b = b_in;
- parm._c = c_in;
- } else {
- is.setstate(std::ios_base::failbit);
- }
- }
- return is;
- }
-
- BOOST_RANDOM_DETAIL_EQUALITY_OPERATOR(param_type, lhs, rhs)
- { return lhs._a == rhs._a && lhs._b == rhs._b && lhs._c == rhs._c; }
-
- BOOST_RANDOM_DETAIL_INEQUALITY_OPERATOR(param_type)
- private:
- RealType _a;
- RealType _b;
- RealType _c;
- };
-
- explicit triangle_distribution(RealType a_arg = RealType(0.0),
- RealType b_arg = RealType(0.5),
- RealType c_arg = RealType(1.0))
- : _a(a_arg), _b(b_arg), _c(c_arg)
- {
- BOOST_ASSERT(_a <= _b && _b <= _c);
- init();
- }
-
- explicit triangle_distribution(const param_type& parm)
- : _a(parm.a()), _b(parm.b()), _c(parm.c())
- {
- init();
- }
-
-
- result_type a() const { return _a; }
-
- result_type b() const { return _b; }
-
- result_type c() const { return _c; }
-
- RealType min BOOST_PREVENT_MACRO_SUBSTITUTION () const { return _a; }
-
- RealType max BOOST_PREVENT_MACRO_SUBSTITUTION () const { return _c; }
-
- param_type param() const { return param_type(_a, _b, _c); }
-
- void param(const param_type& parm)
- {
- _a = parm.a();
- _b = parm.b();
- _c = parm.c();
- init();
- }
-
- void reset() { }
-
- template<class Engine>
- result_type operator()(Engine& eng)
- {
- using std::sqrt;
- result_type u = uniform_01<result_type>()(eng);
- if( u <= q1 )
- return _a + p1*sqrt(u);
- else
- return _c - d3*sqrt(d2*u-d1);
- }
-
- template<class Engine>
- result_type operator()(Engine& eng, const param_type& parm)
- { return triangle_distribution(parm)(eng); }
-
- BOOST_RANDOM_DETAIL_OSTREAM_OPERATOR(os, triangle_distribution, td)
- {
- os << td.param();
- return os;
- }
-
- BOOST_RANDOM_DETAIL_ISTREAM_OPERATOR(is, triangle_distribution, td)
- {
- param_type parm;
- if(is >> parm) {
- td.param(parm);
- }
- return is;
- }
-
- BOOST_RANDOM_DETAIL_EQUALITY_OPERATOR(triangle_distribution, lhs, rhs)
- { return lhs._a == rhs._a && lhs._b == rhs._b && lhs._c == rhs._c; }
-
- BOOST_RANDOM_DETAIL_INEQUALITY_OPERATOR(triangle_distribution)
- private:
-
- void init()
- {
- using std::sqrt;
- d1 = _b - _a;
- d2 = _c - _a;
- d3 = sqrt(_c - _b);
- q1 = d1 / d2;
- p1 = sqrt(d1 * d2);
- }
-
- RealType _a, _b, _c;
- RealType d1, d2, d3, q1, p1;
- };
- }
- using random::triangle_distribution;
- }
- #endif
|