1 /* boost random/triangle_distribution.hpp header file
\r
3 * Copyright Jens Maurer 2000-2001
\r
4 * Distributed under the Boost Software License, Version 1.0. (See
\r
5 * accompanying file LICENSE_1_0.txt or copy at
\r
6 * http://www.boost.org/LICENSE_1_0.txt)
\r
8 * See http://www.boost.org for most recent version including documentation.
\r
10 * $Id: triangle_distribution.hpp 52492 2009-04-19 14:55:57Z steven_watanabe $
\r
13 * 2001-02-18 moved to individual header files
\r
16 #ifndef BOOST_RANDOM_TRIANGLE_DISTRIBUTION_HPP
\r
17 #define BOOST_RANDOM_TRIANGLE_DISTRIBUTION_HPP
\r
19 #include <boost/config/no_tr1/cmath.hpp>
\r
21 #include <boost/random/detail/config.hpp>
\r
22 #include <boost/random/uniform_01.hpp>
\r
26 // triangle distribution, with a smallest, b most probable, and c largest
\r
28 template<class RealType = double>
\r
29 class triangle_distribution
\r
32 typedef RealType input_type;
\r
33 typedef RealType result_type;
\r
35 explicit triangle_distribution(result_type a_arg = result_type(0),
\r
36 result_type b_arg = result_type(0.5),
\r
37 result_type c_arg = result_type(1))
\r
38 : _a(a_arg), _b(b_arg), _c(c_arg)
\r
40 assert(_a <= _b && _b <= _c);
\r
44 // compiler-generated copy ctor and assignment operator are fine
\r
45 result_type a() const { return _a; }
\r
46 result_type b() const { return _b; }
\r
47 result_type c() const { return _c; }
\r
51 template<class Engine>
\r
52 result_type operator()(Engine& eng)
\r
54 #ifndef BOOST_NO_STDC_NAMESPACE
\r
57 result_type u = eng();
\r
59 return _a + p1*sqrt(u);
\r
61 return _c - d3*sqrt(d2*u-d1);
\r
64 #ifndef BOOST_RANDOM_NO_STREAM_OPERATORS
\r
65 template<class CharT, class Traits>
\r
66 friend std::basic_ostream<CharT,Traits>&
\r
67 operator<<(std::basic_ostream<CharT,Traits>& os, const triangle_distribution& td)
\r
69 os << td._a << " " << td._b << " " << td._c;
\r
73 template<class CharT, class Traits>
\r
74 friend std::basic_istream<CharT,Traits>&
\r
75 operator>>(std::basic_istream<CharT,Traits>& is, triangle_distribution& td)
\r
77 is >> std::ws >> td._a >> std::ws >> td._b >> std::ws >> td._c;
\r
86 #ifndef BOOST_NO_STDC_NAMESPACE
\r
96 result_type _a, _b, _c;
\r
97 result_type d1, d2, d3, q1, p1;
\r
100 } // namespace boost
\r
102 #endif // BOOST_RANDOM_TRIANGLE_DISTRIBUTION_HPP
\r