]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/include/parallel/random_number.h
Update Copyright years for files modified in 2011 and/or 2012.
[thirdparty/gcc.git] / libstdc++-v3 / include / parallel / random_number.h
CommitLineData
6482a45c 1// -*- C++ -*-
2
71e45bc2 3// Copyright (C) 2007, 2008, 2009, 2011 Free Software Foundation, Inc.
6482a45c 4//
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
6bc9506f 8// Foundation; either version 3, or (at your option) any later
6482a45c 9// version.
10
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.
15
6bc9506f 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.
19
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/>.
6482a45c 24
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.
28 */
29
30// Written by Johannes Singler.
31
32#ifndef _GLIBCXX_PARALLEL_RANDOM_NUMBER_H
33#define _GLIBCXX_PARALLEL_RANDOM_NUMBER_H 1
34
35#include <parallel/types.h>
8ce4493a 36#include <tr1/random>
f59fa9f3 37#include <limits>
6482a45c 38
39namespace __gnu_parallel
40{
6482a45c 41 /** @brief Random number generator, based on the Mersenne twister. */
34475802 42 class _RandomNumber
6482a45c 43 {
44 private:
84ec5566 45 std::tr1::mt19937 _M_mt;
f59fa9f3 46 uint64_t _M_supremum;
47 uint64_t _M_rand_sup;
84ec5566 48 double _M_supremum_reciprocal;
49 double _M_rand_sup_reciprocal;
8ce4493a 50
51 // Assumed to be twice as long as the usual random number.
f59fa9f3 52 uint64_t __cache;
8ce4493a 53
54 // Bit results.
34475802 55 int __bits_left;
8ce4493a 56
f59fa9f3 57 static uint32_t
58 __scale_down(uint64_t __x,
6482a45c 59#if _GLIBCXX_SCALE_DOWN_FPU
f59fa9f3 60 uint64_t /*_M_supremum*/, double _M_supremum_reciprocal)
6482a45c 61#else
f59fa9f3 62 uint64_t _M_supremum, double /*_M_supremum_reciprocal*/)
6482a45c 63#endif
84ec5566 64 {
6482a45c 65#if _GLIBCXX_SCALE_DOWN_FPU
f59fa9f3 66 return uint32_t(__x * _M_supremum_reciprocal);
6482a45c 67#else
f59fa9f3 68 return static_cast<uint32_t>(__x % _M_supremum);
6482a45c 69#endif
84ec5566 70 }
6482a45c 71
ed7eb958 72 public:
73 /** @brief Default constructor. Seed with 0. */
34475802 74 _RandomNumber()
75 : _M_mt(0), _M_supremum(0x100000000ULL),
f59fa9f3 76 _M_rand_sup(1ULL << std::numeric_limits<uint32_t>::digits),
bcec16bf 77 _M_supremum_reciprocal(double(_M_supremum) / double(_M_rand_sup)),
78 _M_rand_sup_reciprocal(1.0 / double(_M_rand_sup)),
34475802 79 __cache(0), __bits_left(0) { }
ed7eb958 80
81 /** @brief Constructor.
34475802 82 * @param __seed Random __seed.
83 * @param _M_supremum Generate integer random numbers in the
73337dee 84 * interval @c [0,_M_supremum). */
f59fa9f3 85 _RandomNumber(uint32_t __seed, uint64_t _M_supremum = 0x100000000ULL)
34475802 86 : _M_mt(__seed), _M_supremum(_M_supremum),
f59fa9f3 87 _M_rand_sup(1ULL << std::numeric_limits<uint32_t>::digits),
bcec16bf 88 _M_supremum_reciprocal(double(_M_supremum) / double(_M_rand_sup)),
89 _M_rand_sup_reciprocal(1.0 / double(_M_rand_sup)),
34475802 90 __cache(0), __bits_left(0) { }
ed7eb958 91
92 /** @brief Generate unsigned random 32-bit integer. */
f59fa9f3 93 uint32_t
ed7eb958 94 operator()()
34475802 95 { return __scale_down(_M_mt(), _M_supremum, _M_supremum_reciprocal); }
ed7eb958 96
97 /** @brief Generate unsigned random 32-bit integer in the
73337dee 98 interval @c [0,local_supremum). */
f59fa9f3 99 uint32_t
100 operator()(uint64_t local_supremum)
ed7eb958 101 {
34475802 102 return __scale_down(_M_mt(), local_supremum,
84ec5566 103 double(local_supremum * _M_rand_sup_reciprocal));
ed7eb958 104 }
6482a45c 105
ed7eb958 106 /** @brief Generate a number of random bits, run-time parameter.
e12e4f3b 107 * @param __bits Number of bits to generate. */
ed7eb958 108 unsigned long
bcec16bf 109 __genrand_bits(int __bits)
ed7eb958 110 {
bcec16bf 111 unsigned long __res = __cache & ((1 << __bits) - 1);
112 __cache = __cache >> __bits;
113 __bits_left -= __bits;
34475802 114 if (__bits_left < 32)
84ec5566 115 {
f59fa9f3 116 __cache |= ((uint64_t(_M_mt())) << __bits_left);
84ec5566 117 __bits_left += 32;
118 }
34475802 119 return __res;
ed7eb958 120 }
6482a45c 121};
122
123} // namespace __gnu_parallel
124
a8aa9db5 125#endif /* _GLIBCXX_PARALLEL_RANDOM_NUMBER_H */