1 /* boost random/triangle_distribution.hpp header file
3 * Copyright Jens Maurer 2000-2001
4 * Distributed under the Boost Software License, Version 1.0. (See
5 * accompanying file LICENSE_1_0.txt or copy at
6 * http://www.boost.org/LICENSE_1_0.txt)
8 * See http://www.boost.org for most recent version including documentation.
10 * $Id: triangle_distribution.hpp,v 1.11 2004/07/27 03:43:32 dgregor Exp $
13 * 2001-02-18 moved to individual header files
16 #ifndef BOOST_RANDOM_TRIANGLE_DISTRIBUTION_HPP
17 #define BOOST_RANDOM_TRIANGLE_DISTRIBUTION_HPP
21 #include <boost/random/uniform_01.hpp>
25 // triangle distribution, with a smallest, b most probable, and c largest
27 template<class RealType = double>
28 class triangle_distribution
31 typedef RealType input_type;
32 typedef RealType result_type;
34 explicit triangle_distribution(result_type a = result_type(0),
35 result_type b = result_type(0.5),
36 result_type c = result_type(1))
39 assert(_a <= _b && _b <= _c);
43 // compiler-generated copy ctor and assignment operator are fine
44 result_type a() const { return _a; }
45 result_type b() const { return _b; }
46 result_type c() const { return _c; }
50 template<class Engine>
51 result_type operator()(Engine& eng)
53 #ifndef BOOST_NO_STDC_NAMESPACE
56 result_type u = eng();
58 return _a + p1*sqrt(u);
60 return _c - d3*sqrt(d2*u-d1);
63 #if !defined(BOOST_NO_OPERATORS_IN_NAMESPACE) && !defined(BOOST_NO_MEMBER_TEMPLATE_FRIENDS)
64 template<class CharT, class Traits>
65 friend std::basic_ostream<CharT,Traits>&
66 operator<<(std::basic_ostream<CharT,Traits>& os, const triangle_distribution& td)
68 os << td._a << " " << td._b << " " << td._c;
72 template<class CharT, class Traits>
73 friend std::basic_istream<CharT,Traits>&
74 operator>>(std::basic_istream<CharT,Traits>& is, triangle_distribution& td)
76 is >> std::ws >> td._a >> std::ws >> td._b >> std::ws >> td._c;
85 #ifndef BOOST_NO_STDC_NAMESPACE
95 result_type _a, _b, _c;
96 result_type d1, d2, d3, q1, p1;
101 #endif // BOOST_RANDOM_TRIANGLE_DISTRIBUTION_HPP