Apply clang-format to source tree
[alexxy/gromacs.git] / src / gromacs / random / uniformrealdistribution.h
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 2015,2016,2018,2019, by the GROMACS development team, led by
5  * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
6  * and including many others, as listed in the AUTHORS file in the
7  * top-level source directory and at http://www.gromacs.org.
8  *
9  * GROMACS is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public License
11  * as published by the Free Software Foundation; either version 2.1
12  * of the License, or (at your option) any later version.
13  *
14  * GROMACS is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with GROMACS; if not, see
21  * http://www.gnu.org/licenses, or write to the Free Software Foundation,
22  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
23  *
24  * If you want to redistribute modifications to GROMACS, please
25  * consider that scientific software is very special. Version
26  * control is crucial - bugs must be traceable. We will be happy to
27  * consider code for inclusion in the official distribution, but
28  * derived work must not be called official GROMACS. Details are found
29  * in the README & COPYING files - if they are missing, get the
30  * official version at http://www.gromacs.org.
31  *
32  * To help us fund GROMACS development, we humbly ask that you cite
33  * the research papers on the package. Check out http://www.gromacs.org.
34  */
35
36 /*! \file
37  * \brief The uniform real distribution
38  *
39  * Portable version of the uniform real that generates the same sequence
40  * on all platforms. Since stdlibc++ and libc++ provide different sequences
41  * we prefer this one so unit tests produce the same values on all platforms.
42  *
43  * \author Erik Lindahl <erik.lindahl@gmail.com>
44  * \inpublicapi
45  * \ingroup module_random
46  */
47
48 #ifndef GMX_RANDOM_UNIFORMREALDISTRIBUTION_H
49 #define GMX_RANDOM_UNIFORMREALDISTRIBUTION_H
50
51 #include <cmath>
52
53 #include <algorithm>
54 #include <limits>
55
56 #include "gromacs/math/functions.h"
57 #include "gromacs/utility/basedefinitions.h"
58 #include "gromacs/utility/classhelpers.h"
59 #include "gromacs/utility/gmxassert.h"
60 #include "gromacs/utility/real.h"
61
62 /*
63  * The portable version of the uniform real distribution (to make sure we get
64  * the same values on all platforms) has been modified from the LLVM libcxx
65  * headers, distributed under the MIT license:
66  *
67  * Copyright (c) The LLVM compiler infrastructure
68  *
69  * Permission is hereby granted, free of charge, to any person obtaining a copy
70  * of this software and associated documentation files (the "Software"), to deal
71  * in the Software without restriction, including without limitation the rights
72  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
73  * copies of the Software, and to permit persons to whom the Software is
74  * furnished to do so, subject to the following conditions:
75  *
76  * The above copyright notice and this permission notice shall be included in
77  * all copies or substantial portions of the Software.
78  *
79  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
80  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
81  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
82  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
83  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
84  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
85  * THE SOFTWARE.
86  */
87
88 namespace gmx
89 {
90
91 /*! \brief Generate a floating-point value with specified number of random bits
92  *
93  * \tparam RealType  Floating-point type to generate
94  * \tparam Bits      Number of random bits to generate
95  * \tparam Rng       Random number generator class
96  *
97  * \param  g         Random number generator to use
98  *
99  * This implementation avoids the bug in libc++ and stdlibc++ (which is due
100  * to the C++ standard being unclear) where 1.0 can be returned occasionally.
101  *
102  */
103 template<class RealType = real, unsigned int Bits, class Rng>
104 RealType generateCanonical(Rng& g)
105 {
106     // No point in using more bits than fit in RealType
107     const uint64_t digits   = std::numeric_limits<RealType>::digits;
108     const uint64_t realBits = std::min(digits, static_cast<uint64_t>(Bits));
109     const uint64_t range    = Rng::max() - Rng::min() + uint64_t(1);
110     uint64_t       log2R    = (range == 0) ? std::numeric_limits<uint64_t>::digits : log2I(range);
111     uint64_t       k        = realBits / log2R + (realBits % log2R != 0) + (realBits == 0);
112     RealType       r        = Rng::max() - Rng::min() + RealType(1);
113     RealType       s        = g() - Rng::min();
114     RealType       base     = r;
115     RealType       result;
116
117     for (uint64_t i = 1; i < k; ++i)
118     {
119         s += RealType(g() - Rng::min()) * base;
120         base *= r;
121     }
122     result = s / base;
123
124     // This implementation is specified by the C++ standard, but unfortunately it
125     // has a bug where 1.0 can be generated occasionally due to the limited
126     // precision of floating point, while 0.0 is only generated half as often as
127     // it should. We "solve" both these issues by swapping 1.0 for 0.0 when it happens.
128     //
129     // See:
130     // https://llvm.org/bugs/show_bug.cgi?id=18767
131     // https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63176
132     //
133     // Note that we prefer not to use the gcc 'fix' of looping until the result
134     // is smaller than 1.0, since that breaks the strict specification of the
135     // number of times the rng will be called.
136     //
137     // This can only happen when we ask for the same number of bits that fit
138     // in RealType, so by checking for that we avoid the extra code in all other
139     // cases. If you are worried about it: Use RealType=double with 32 bits.
140     //
141     if (realBits == digits && result == 1.0)
142     {
143         result = 0.0;
144     }
145     return result;
146 }
147
148
149 /*! \brief Uniform real distribution
150  *
151  *  The C++ standard library does provide this distribution, but even
152  *  though they all sample from the correct distribution different standard
153  *  library implementations appear to return different sequences of numbers
154  *  for the same random number generator. To make it easier to use GROMACS
155  *  unit tests that depend on random numbers we have our own implementation.
156  *
157  * \tparam RealType Floating-point type, real by default in GROMACS.
158  */
159 template<class RealType = real>
160 class UniformRealDistribution
161 {
162 public:
163     /*! \brief Type of values returned */
164     typedef RealType result_type;
165
166     /*! \brief Uniform real distribution parameters */
167     class param_type
168     {
169         /*! \brief Lower end of range (inclusive) */
170         result_type a_;
171         /*! \brief Upper end of range (exclusive) */
172         result_type b_;
173
174     public:
175         /*! \brief Reference back to the distribution class */
176         typedef UniformRealDistribution distribution_type;
177
178         /*! \brief Construct parameter block
179          *
180          * \param a   Lower end of range (inclusive)
181          * \param b   Upper end of range (exclusive)
182          */
183         explicit param_type(result_type a = 0.0, result_type b = 1.0) : a_(a), b_(b)
184         {
185             GMX_RELEASE_ASSERT(a < b, "The uniform real distribution requires a<b");
186         }
187
188         /*! \brief Return first parameter */
189         result_type a() const { return a_; }
190         /*! \brief Return second parameter */
191         result_type b() const { return b_; }
192
193         /*! \brief True if two parameter sets will return the same uniform real distribution.
194          *
195          * \param x  Instance to compare with.
196          */
197         bool operator==(const param_type& x) const { return a_ == x.a_ && b_ == x.b_; }
198
199         /*! \brief True if two parameter sets will return different uniform real distributions
200          *
201          * \param x  Instance to compare with.
202          */
203         bool operator!=(const param_type& x) const { return !operator==(x); }
204     };
205
206 public:
207     /*! \brief Construct new distribution with given floating-point parameters.
208      *
209      * \param a   Lower end of range (inclusive)
210      * \param b   Upper end of range (exclusive)
211      */
212     explicit UniformRealDistribution(result_type a = 0.0, result_type b = 1.0) :
213         param_(param_type(a, b))
214     {
215     }
216
217     /*! \brief Construct new distribution from parameter class
218      *
219      * \param param  Parameter class as defined inside gmx::UniformRealDistribution.
220      */
221     explicit UniformRealDistribution(const param_type& param) : param_(param) {}
222
223     /*! \brief Flush all internal saved values  */
224     void reset() {}
225
226     /*! \brief Return values from uniform real distribution with internal parameters
227      *
228      * \tparam Rng  Random engine class
229      *
230      * \param  g    Random engine
231      */
232     template<class Rng>
233     result_type operator()(Rng& g)
234     {
235         return (*this)(g, param_);
236     }
237
238     /*! \brief Return value from uniform real distribution with given parameters
239      *
240      * \tparam Rng   Random engine class
241      *
242      * \param  g     Random engine
243      * \param  param Parameters to use
244      */
245     template<class Rng>
246     result_type operator()(Rng& g, const param_type& param)
247     {
248         result_type r = generateCanonical<RealType, std::numeric_limits<RealType>::digits>(g);
249         return (param.b() - param.a()) * r + param.a();
250     }
251
252     /*! \brief Return the lower range uniform real distribution */
253     result_type a() const { return param_.a(); }
254
255     /*! \brief Return the upper range of the uniform real distribution */
256     result_type b() const { return param_.b(); }
257
258     /*! \brief Return the full parameter class of the uniform real distribution */
259     param_type param() const { return param_; }
260
261     /*! \brief Smallest value that can be returned from uniform real distribution */
262     result_type min() const { return a(); }
263
264     /*! \brief Largest value that can be returned from uniform real distribution */
265     result_type max() const { return b(); }
266
267     /*! \brief True if two uniform real distributions will produce the same values.
268      *
269      * \param  x     Instance to compare with.
270      */
271     bool operator==(const UniformRealDistribution& x) const { return param_ == x.param_; }
272
273     /*! \brief True if two uniform real distributions will produce different values.
274      *
275      * \param  x     Instance to compare with.
276      */
277     bool operator!=(const UniformRealDistribution& x) const { return !operator==(x); }
278
279 private:
280     /*! \brief Internal value for parameters, can be overridden at generation time. */
281     param_type param_;
282
283     GMX_DISALLOW_COPY_AND_ASSIGN(UniformRealDistribution);
284 };
285
286 } // namespace gmx
287
288 #endif // GMX_RANDOM_UNIFORMREALDISTRIBUTION_H