2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 2015,2016, 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.
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.
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.
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.
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.
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.
36 * \brief Tests for GROMACS tabulated normal distribution
38 * \author Erik Lindahl <erik.lindahl@gmail.com>
39 * \ingroup module_random
43 #include "gromacs/random/tabulatednormaldistribution.h"
45 #include <gtest/gtest.h>
47 #include "gromacs/random/threefry.h"
49 #include "testutils/refdata.h"
50 #include "testutils/testasserts.h"
58 TEST(TabulatedNormalDistributionTest
, Output14
)
60 gmx::test::TestReferenceData data
;
61 gmx::test::TestReferenceChecker
checker(data
.rootChecker());
63 gmx::ThreeFry2x64
<2> rng(123456, gmx::RandomDomain::Other
);
64 gmx::TabulatedNormalDistribution
<> dist(2.0, 5.0); // Use default 14-bit resolution
65 std::vector
<float> result
;
67 for (int i
= 0; i
< 10; i
++)
69 result
.push_back(dist(rng
));
71 checker
.checkSequence(result
.begin(), result
.end(), "TabulatedNormalDistribution14");
74 TEST(TabulatedNormalDistributionTest
, Output16
)
76 gmx::test::TestReferenceData data
;
77 gmx::test::TestReferenceChecker
checker(data
.rootChecker());
79 gmx::ThreeFry2x64
<2> rng(123456, gmx::RandomDomain::Other
);
80 gmx::TabulatedNormalDistribution
<float, 16> dist(2.0, 5.0); // Use larger 16-bit table
81 std::vector
<float> result
;
83 for (int i
= 0; i
< 10; i
++)
85 result
.push_back(dist(rng
));
87 checker
.checkSequence(result
.begin(), result
.end(), "TabulatedNormalDistribution16");
90 TEST(TabulatedNormalDistributionTest
, OutputDouble14
)
92 gmx::test::TestReferenceData data
;
93 gmx::test::TestReferenceChecker
checker(data
.rootChecker());
95 gmx::ThreeFry2x64
<2> rng(123456, gmx::RandomDomain::Other
);
96 gmx::TabulatedNormalDistribution
<double> dist(2.0, 5.0);
97 std::vector
<double> result
;
99 for (int i
= 0; i
< 10; i
++)
101 result
.push_back(dist(rng
));
103 checker
.checkSequence(result
.begin(), result
.end(), "TabulatedNormalDistributionDouble14");
106 TEST(TabulatedNormalDistributionTest
, Logical
)
108 gmx::ThreeFry2x64
<2> rng(123456, gmx::RandomDomain::Other
);
109 gmx::TabulatedNormalDistribution
<> distA(2.0, 5.0);
110 gmx::TabulatedNormalDistribution
<> distB(2.0, 5.0);
111 gmx::TabulatedNormalDistribution
<> distC(3.0, 5.0);
112 gmx::TabulatedNormalDistribution
<> distD(2.0, 4.0);
114 EXPECT_EQ(distA
, distB
);
115 EXPECT_NE(distA
, distC
);
116 EXPECT_NE(distA
, distD
);
120 TEST(TabulatedNormalDistributionTest
, Reset
)
122 gmx::ThreeFry2x64
<2> rng(123456, gmx::RandomDomain::Other
);
123 gmx::TabulatedNormalDistribution
<> distA(2.0, 5.0);
124 gmx::TabulatedNormalDistribution
<> distB(2.0, 5.0);
125 gmx::TabulatedNormalDistribution
<>::result_type valA
, valB
;
135 EXPECT_REAL_EQ_TOL(valA
, valB
, gmx::test::ulpTolerance(0));
138 TEST(TabulatedNormalDistributionTest
, AltParam
)
140 gmx::ThreeFry2x64
<2> rngA(123456, gmx::RandomDomain::Other
);
141 gmx::ThreeFry2x64
<2> rngB(123456, gmx::RandomDomain::Other
);
142 gmx::TabulatedNormalDistribution
<> distA(2.0, 5.0);
143 gmx::TabulatedNormalDistribution
<> distB
;
144 gmx::TabulatedNormalDistribution
<>::param_type
paramA(2.0, 5.0);
146 EXPECT_NE(distA(rngA
), distB(rngB
));
151 EXPECT_REAL_EQ_TOL(distA(rngA
), distB(rngB
, paramA
), gmx::test::ulpTolerance(0));
154 TEST(TabulatedNormalDistributionTableTest
, HasValidProperties
)
156 std::vector
<real
> table
= TabulatedNormalDistribution
<real
>::makeTable();
158 EXPECT_EQ(table
.size() % 2, 0) << "Table must have even number of entries";
160 size_t halfSize
= table
.size() / 2;
161 double sumOfSquares
= 0.0;
162 // accept errors of a few ULP since the exact value of the summation
163 // below will depend on whether the compiler issues FMA instructions
164 auto tolerance
= gmx::test::ulpTolerance(10);
165 for (size_t i
= 0, iFromEnd
= table
.size()-1; i
< halfSize
; ++i
, --iFromEnd
)
167 EXPECT_REAL_EQ_TOL(table
.at(i
), -table
.at(iFromEnd
), tolerance
)
168 << "Table is not an odd-valued function for entries " << i
<< " and " << iFromEnd
;
169 // Add up the squares of the table values in order of ascending
170 // magnitude (to minimize accumulation of round-off error).
171 sumOfSquares
+= table
.at(i
) * table
.at(i
) + table
.at(iFromEnd
) * table
.at(iFromEnd
);
174 double variance
= sumOfSquares
/ table
.size();
175 EXPECT_REAL_EQ_TOL(1.0, variance
, tolerance
) << "Table should have unit variance";
178 } // namespace anonymous