3 // Copyright (C) 2007-2013 Free Software Foundation, Inc.
5 // This file is part of the GNU ISO C++ Library. This library is free
6 // software; you can redistribute it and/or modify it under the terms
7 // of the GNU General Public License as published by the Free Software
8 // Foundation; either version 3, or (at your option) any later
11 // This library is distributed in the hope that it will be useful, but
12 // WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 // General Public License for more details.
16 // Under Section 7 of GPL version 3, you are granted additional
17 // permissions described in the GCC Runtime Library Exception, version
18 // 3.1, as published by the Free Software Foundation.
20 // You should have received a copy of the GNU General Public License and
21 // a copy of the GCC Runtime Library Exception along with this program;
22 // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23 // <http://www.gnu.org/licenses/>.
25 /** @file parallel/random_number.h
26 * @brief Random number generator based on the Mersenne twister.
27 * This file is a GNU parallel extension to the Standard C++ Library.
30 // Written by Johannes Singler.
32 #ifndef _GLIBCXX_PARALLEL_RANDOM_NUMBER_H
33 #define _GLIBCXX_PARALLEL_RANDOM_NUMBER_H 1
35 #include <parallel/types.h>
39 namespace __gnu_parallel
41 /** @brief Random number generator, based on the Mersenne twister. */
45 std::tr1::mt19937 _M_mt
;
48 double _M_supremum_reciprocal
;
49 double _M_rand_sup_reciprocal
;
51 // Assumed to be twice as long as the usual random number.
58 __scale_down(uint64_t __x
,
59 #if _GLIBCXX_SCALE_DOWN_FPU
60 uint64_t /*_M_supremum*/, double _M_supremum_reciprocal
)
62 uint64_t _M_supremum
, double /*_M_supremum_reciprocal*/)
65 #if _GLIBCXX_SCALE_DOWN_FPU
66 return uint32_t(__x
* _M_supremum_reciprocal
);
68 return static_cast<uint32_t>(__x
% _M_supremum
);
73 /** @brief Default constructor. Seed with 0. */
75 : _M_mt(0), _M_supremum(0x100000000ULL
),
76 _M_rand_sup(1ULL << std::numeric_limits
<uint32_t>::digits
),
77 _M_supremum_reciprocal(double(_M_supremum
) / double(_M_rand_sup
)),
78 _M_rand_sup_reciprocal(1.0 / double(_M_rand_sup
)),
79 __cache(0), __bits_left(0) { }
81 /** @brief Constructor.
82 * @param __seed Random __seed.
83 * @param _M_supremum Generate integer random numbers in the
84 * interval @c [0,_M_supremum). */
85 _RandomNumber(uint32_t __seed
, uint64_t _M_supremum
= 0x100000000ULL
)
86 : _M_mt(__seed
), _M_supremum(_M_supremum
),
87 _M_rand_sup(1ULL << std::numeric_limits
<uint32_t>::digits
),
88 _M_supremum_reciprocal(double(_M_supremum
) / double(_M_rand_sup
)),
89 _M_rand_sup_reciprocal(1.0 / double(_M_rand_sup
)),
90 __cache(0), __bits_left(0) { }
92 /** @brief Generate unsigned random 32-bit integer. */
95 { return __scale_down(_M_mt(), _M_supremum
, _M_supremum_reciprocal
); }
97 /** @brief Generate unsigned random 32-bit integer in the
98 interval @c [0,local_supremum). */
100 operator()(uint64_t local_supremum
)
102 return __scale_down(_M_mt(), local_supremum
,
103 double(local_supremum
* _M_rand_sup_reciprocal
));
106 /** @brief Generate a number of random bits, run-time parameter.
107 * @param __bits Number of bits to generate. */
109 __genrand_bits(int __bits
)
111 unsigned long __res
= __cache
& ((1 << __bits
) - 1);
112 __cache
= __cache
>> __bits
;
113 __bits_left
-= __bits
;
114 if (__bits_left
< 32)
116 __cache
|= ((uint64_t(_M_mt())) << __bits_left
);
123 } // namespace __gnu_parallel
125 #endif /* _GLIBCXX_PARALLEL_RANDOM_NUMBER_H */