bdaf090018fab9fc571868e5897909f728b2bead
[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,2020, 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 #include <type_traits>
56
57 #include "gromacs/math/functions.h"
58 #include "gromacs/utility/basedefinitions.h"
59 #include "gromacs/utility/classhelpers.h"
60 #include "gromacs/utility/gmxassert.h"
61 #include "gromacs/utility/real.h"
62
63 /*
64  * The portable version of the uniform real distribution (to make sure we get
65  * the same values on all platforms) has been modified from the LLVM libcxx
66  * headers, distributed under the MIT license:
67  *
68  * Copyright (c) The LLVM compiler infrastructure
69  *
70  * Permission is hereby granted, free of charge, to any person obtaining a copy
71  * of this software and associated documentation files (the "Software"), to deal
72  * in the Software without restriction, including without limitation the rights
73  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
74  * copies of the Software, and to permit persons to whom the Software is
75  * furnished to do so, subject to the following conditions:
76  *
77  * The above copyright notice and this permission notice shall be included in
78  * all copies or substantial portions of the Software.
79  *
80  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
81  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
82  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
83  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
84  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
85  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
86  * THE SOFTWARE.
87  */
88
89 namespace gmx
90 {
91
92 /*! \brief Generate a floating-point value with specified number of random bits
93  *
94  * \tparam RealType  Floating-point type to generate
95  * \tparam Bits      Number of random bits to generate
96  * \tparam Rng       Random number generator class
97  *
98  * \param  g         Random number generator to use
99  *
100  * This implementation avoids the bug in libc++ and stdlibc++ (which is due
101  * to the C++ standard being unclear) where 1.0 can be returned occasionally.
102  *
103  */
104 template<class RealType = real, unsigned int Bits, class Rng>
105 RealType generateCanonical(Rng& g)
106 {
107     // No point in using more bits than fit in RealType
108     const uint64_t digits   = std::numeric_limits<RealType>::digits;
109     const uint64_t realBits = std::min(digits, static_cast<uint64_t>(Bits));
110     const uint64_t log2R    = std::numeric_limits<typename Rng::result_type>::digits;
111     uint64_t       k        = realBits / log2R + (realBits % log2R != 0) + (realBits == 0);
112     // Note that Rng::max and Rng::min are typically an integer type.
113     // Only unsigned integer types can express the range using the
114     // same type. Converting to RealType before computing the range
115     // would work but we have no need for that.
116     static_assert(std::is_unsigned<decltype(Rng::max())>::value
117                           && std::is_unsigned<decltype(Rng::min())>::value,
118                   "Rng::max and Rng::min must be unsigned");
119     RealType r    = RealType(Rng::max() - Rng::min()) + RealType(1);
120     RealType s    = g() - Rng::min();
121     RealType base = r;
122     RealType result;
123
124     for (uint64_t i = 1; i < k; ++i)
125     {
126         s += RealType(g() - Rng::min()) * base;
127         base *= r;
128     }
129     result = s / base;
130
131     // This implementation is specified by the C++ standard, but unfortunately it
132     // has a bug where 1.0 can be generated occasionally due to the limited
133     // precision of floating point, while 0.0 is only generated half as often as
134     // it should. We "solve" both these issues by swapping 1.0 for 0.0 when it happens.
135     //
136     // See:
137     // https://llvm.org/bugs/show_bug.cgi?id=18767
138     // https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63176
139     //
140     // Note that we prefer not to use the gcc 'fix' of looping until the result
141     // is smaller than 1.0, since that breaks the strict specification of the
142     // number of times the rng will be called.
143     //
144     // This can only happen when we ask for the same number of bits that fit
145     // in RealType, so by checking for that we avoid the extra code in all other
146     // cases. If you are worried about it: Use RealType=double with 32 bits.
147     //
148     if (realBits == digits && result == 1.0)
149     {
150         result = 0.0;
151     }
152     return result;
153 }
154
155
156 /*! \brief Uniform real distribution
157  *
158  *  The C++ standard library does provide this distribution, but even
159  *  though they all sample from the correct distribution different standard
160  *  library implementations appear to return different sequences of numbers
161  *  for the same random number generator. To make it easier to use GROMACS
162  *  unit tests that depend on random numbers we have our own implementation.
163  *
164  * \tparam RealType Floating-point type, real by default in GROMACS.
165  */
166 template<class RealType = real>
167 class UniformRealDistribution
168 {
169 public:
170     /*! \brief Type of values returned */
171     typedef RealType result_type;
172
173     /*! \brief Uniform real distribution parameters */
174     class param_type
175     {
176         /*! \brief Lower end of range (inclusive) */
177         result_type a_;
178         /*! \brief Upper end of range (exclusive) */
179         result_type b_;
180
181     public:
182         /*! \brief Reference back to the distribution class */
183         typedef UniformRealDistribution distribution_type;
184
185         /*! \brief Construct parameter block
186          *
187          * \param a   Lower end of range (inclusive)
188          * \param b   Upper end of range (exclusive)
189          */
190         explicit param_type(result_type a = 0.0, result_type b = 1.0) : a_(a), b_(b)
191         {
192             GMX_RELEASE_ASSERT(a < b, "The uniform real distribution requires a<b");
193         }
194
195         /*! \brief Return first parameter */
196         result_type a() const { return a_; }
197         /*! \brief Return second parameter */
198         result_type b() const { return b_; }
199
200         /*! \brief True if two parameter sets will return the same uniform real distribution.
201          *
202          * \param x  Instance to compare with.
203          */
204         bool operator==(const param_type& x) const { return a_ == x.a_ && b_ == x.b_; }
205
206         /*! \brief True if two parameter sets will return different uniform real distributions
207          *
208          * \param x  Instance to compare with.
209          */
210         bool operator!=(const param_type& x) const { return !operator==(x); }
211     };
212
213 public:
214     /*! \brief Construct new distribution with given floating-point parameters.
215      *
216      * \param a   Lower end of range (inclusive)
217      * \param b   Upper end of range (exclusive)
218      */
219     explicit UniformRealDistribution(result_type a = 0.0, result_type b = 1.0) :
220         param_(param_type(a, b))
221     {
222     }
223
224     /*! \brief Construct new distribution from parameter class
225      *
226      * \param param  Parameter class as defined inside gmx::UniformRealDistribution.
227      */
228     explicit UniformRealDistribution(const param_type& param) : param_(param) {}
229
230     /*! \brief Flush all internal saved values  */
231     void reset() {}
232
233     /*! \brief Return values from uniform real distribution with internal parameters
234      *
235      * \tparam Rng  Random engine class
236      *
237      * \param  g    Random engine
238      */
239     template<class Rng>
240     result_type operator()(Rng& g)
241     {
242         return (*this)(g, param_);
243     }
244
245     /*! \brief Return value from uniform real distribution with given parameters
246      *
247      * \tparam Rng   Random engine class
248      *
249      * \param  g     Random engine
250      * \param  param Parameters to use
251      */
252     template<class Rng>
253     result_type operator()(Rng& g, const param_type& param)
254     {
255         result_type r = generateCanonical<RealType, std::numeric_limits<RealType>::digits>(g);
256         return (param.b() - param.a()) * r + param.a();
257     }
258
259     /*! \brief Return the lower range uniform real distribution */
260     result_type a() const { return param_.a(); }
261
262     /*! \brief Return the upper range of the uniform real distribution */
263     result_type b() const { return param_.b(); }
264
265     /*! \brief Return the full parameter class of the uniform real distribution */
266     param_type param() const { return param_; }
267
268     /*! \brief Smallest value that can be returned from uniform real distribution */
269     result_type min() const { return a(); }
270
271     /*! \brief Largest value that can be returned from uniform real distribution */
272     result_type max() const { return b(); }
273
274     /*! \brief True if two uniform real distributions will produce the same values.
275      *
276      * \param  x     Instance to compare with.
277      */
278     bool operator==(const UniformRealDistribution& x) const { return param_ == x.param_; }
279
280     /*! \brief True if two uniform real distributions will produce different values.
281      *
282      * \param  x     Instance to compare with.
283      */
284     bool operator!=(const UniformRealDistribution& x) const { return !operator==(x); }
285
286 private:
287     /*! \brief Internal value for parameters, can be overridden at generation time. */
288     param_type param_;
289
290     GMX_DISALLOW_COPY_AND_ASSIGN(UniformRealDistribution);
291 };
292
293 } // namespace gmx
294
295 #endif // GMX_RANDOM_UNIFORMREALDISTRIBUTION_H