source: pacpusframework/trunk/include/Pacpus/PacpusTools/math/rng.hpp@ 73

Last change on this file since 73 was 73, checked in by Marek Kurdej, 11 years ago

Minor: line-endings.

  • Property svn:keywords set to Id
File size: 7.3 KB
Line 
1// This file is part of the PACPUS framework distributed under the
2// CECILL-C License, Version 1.0.
3//
4/// @file
5/// @author Firstname Surname <firstname.surname@utc.fr>
6/// @date Month, Year
7/// @version $Id: rng.hpp 73 2013-01-10 16:56:42Z kurdejma $
8/// @copyright Copyright (c) UTC/CNRS Heudiasyc 2006 - 2013. All rights reserved.
9/// @brief Random number generators.
10///
11/// Detailed description.
12
13#ifndef __BOOST_RNG__
14#define __BOOST_RNG__
15
16#include <boost/random.hpp>
17#include <boost/math/distributions.hpp>
18#include <ctime>
19
20namespace math {
21
22namespace rng {
23
24/// This class is basic normal random number generator
25///
26/// @tparam RealType describe number precision, e.g. @c float, @c double
27/// @tparam PRNG describe pseudo random number generator
28/// @see boost::random
29template <class RealType, class PRNG>
30class normal_generator
31{
32public:
33 /// Default construtor
34 normal_generator()
35 : engine(time(NULL))
36 , generator(engine,boost::normal_distribution<RealType>(0,1))
37 {}
38
39 /// Construtor
40 ///
41 /// @param dist a normal distribution
42 /// @see boost::distributions
43 normal_generator(const boost::math::normal_distribution<RealType> & dist)
44 : engine(time(NULL))
45 , generator(engine,boost::normal_distribution<RealType>(dist.mean(),dist.sigma()))
46 {}
47
48 /// Constructor
49 ///
50 /// @param mean mean of the normal distribution
51 /// @param sigma standard deviation of the normal distribution
52 normal_generator(const RealType & mean ,const RealType & sigma)
53 : engine(time(NULL))
54 , generator(engine,boost::normal_distribution<RealType>(mean(),sigma()))
55 {}
56
57 /// Get a random number
58 RealType operator()()
59 {
60 return generator();
61 }
62
63 /// Set normal distribution
64 ///
65 /// @param dist : a normal distribution
66 /// @see boost::distributions
67 void distribution( const boost::math::normal_distribution<RealType> & dist)
68 {
69 generator.dist= boost::normal_distribution<RealType>(dist.mean(),dist.standard_deviation());
70 }
71
72 /// Set normal distrubution
73 ///
74 /// @param mean : mean of the normal distribution
75 /// @param sigma : satndard deviation of the normal distribution
76 void distribution( const RealType & mean ,const RealType & sigma) {
77 generator.distribution()= boost::normal_distribution<RealType>(mean,sigma);
78 }
79
80private:
81 /// pseudorandom number generator
82 PRNG engine;
83
84 /// the normal random number generator
85 boost::variate_generator<PRNG, boost::normal_distribution<RealType> > generator;
86};
87
88/// Defines normal random number generator as a Mersenne Twister 19937 with double-precision numbers
89typedef class normal_generator<double, boost::mt19937> normal_rng;
90
91/// This class is basic uniform random number generator.
92///
93/// @tparam RealType describe number precision, e.g. @c float, @c double
94/// @tparam PRNG describe pseudo random number generator
95/// @see boost::random
96template <class RealType, class PRNG>
97class uniform_generator
98{
99public:
100 /// Default construtor
101 uniform_generator()
102 : engine(time(NULL))
103 , generator(engine, boost::uniform_real<RealType>(0,1))
104 {}
105
106 /// Construtor
107 /// @param dist a uniform distribution
108 /// @see boost::distributions
109 uniform_generator(const boost::math::uniform_distribution<RealType> & dist)
110 : engine(time(NULL))
111 , generator(engine, boost::uniform_real<RealType>(dist.lower(),dist.upper()))
112 {}
113
114 /// Constructor
115 ///
116 /// @param lower the lower value of the uniform distribution
117 /// @param upper the upper value of the uniform distribution
118 uniform_generator(const RealType & lower , const RealType & upper)
119 : engine(time(NULL))
120 , generator(engine, boost::uniform_real<RealType>(lower,upper))
121 {}
122
123 /// Get a random number
124 RealType operator()()
125 {
126 return generator();
127 }
128
129 /// Set uniform distribution
130 ///
131 /// @param dist a normal distribution
132 /// @see boost::distributions
133 void distribution( const boost::math::uniform_distribution<RealType> & dist)
134 {
135 generator.dist()= boost::uniform_real<RealType>(dist.lower(),dist.upper());
136 }
137
138 /// Set uniform distribution
139 ///
140 /// @param lower the lower value of the uniform distribution
141 /// @param upper the upper value of the uniform distribution
142 void distribution( const RealType & lower , const RealType & upper)
143 {
144 generator.dist()= boost::uniform_real<RealType>(lower,upper);
145 }
146
147private:
148 /// @brief pseudo random number generator
149 PRNG engine;
150 /// @brief the uniform random number generator
151 boost::variate_generator<PRNG, boost::uniform_real<RealType> > generator;
152};
153
154/// Defines uniform random number generator as a Mersenne Twister 19937 with double-precision numbers
155typedef class uniform_generator<double, boost::mt19937> uniform_rng;
156
157/// This class is basic triangular random number generator
158///
159/// @tparam RealType describe number precision, e.g. @c float, @c double
160/// @tparam PRNG describe pseudo random number generator ( see boost random)
161template <class RealType, class PRNG>
162class triangle_generator
163{
164public:
165 /// Default construtor
166 triangle_generator()
167 : engine(time(NULL))
168 , generator(engine, boost::triangle_distribution<RealType>(-1,0,1))
169 {}
170
171 /// Construtor
172 ///
173 /// @param dist : a traingle distribution
174 /// @see boost distributions
175 triangle_generator(const boost::math::triangular_distribution<RealType> & dist)
176 : engine(time(NULL))
177 ,generator(engine, boost::triangle_distribution<RealType>(dist.lower(),dist.upper()))
178 {}
179
180 /// Constructor
181 ///
182 /// @param lower the lower value of the uniform distribution
183 /// @param mode the mode value of the uniform distribution
184 /// @param upper the upper value of the uniform distribution
185 triangle_generator(const RealType & lower, const RealType & mode ,const RealType & upper)
186 : engine(time(NULL))
187 , generator(engine, boost::triangle_distribution<RealType>(lower,mode,upper))
188 {}
189
190 /// Get a random number
191 RealType operator()()
192 {
193 return generator();
194 }
195
196 /// Set triangle distribution
197 /// @param dist a normal distribution
198 /// @see boost::distributions
199 void distribution( const boost::math::triangular_distribution<RealType> & dist)
200 {
201 generator.dist()= boost::triangle_distribution<RealType>(dist.lower(),dist.mode(),dist.upper());
202 }
203
204 /// Set triangle distribution
205 /// @param lower the lower value of the uniform distribution
206 /// @param mode the mode value of the uniform distribution
207 /// @param upper the upper value of the uniform distribution
208 void distribution( const RealType & lower, const RealType & mode ,const RealType & upper)
209 {
210 generator.dist()= boost::triangle_distribution<RealType>(lower,mode,upper);
211 }
212
213private :
214 /// pseudorandom number generator
215 PRNG engine;
216 /// the triangle random number generator
217 boost::variate_generator<PRNG, boost::triangle_distribution<RealType> > generator;
218};
219
220typedef class triangle_generator<double, boost::mt19937> triangle_rng;
221
222} // namespace rng
223} // namespace math
224
225#endif // __BOOST_RNG__
Note: See TracBrowser for help on using the repository browser.