source: src/RandomNumbers/unittests/RandomNumberDistributionFactoryUnitTest.cpp

Candidate_v1.6.1
Last change on this file was 94d5ac6, checked in by Frederik Heber <heber@…>, 12 years ago

FIX: As we use GSL internally, we are as of now required to use GPL v2 license.

  • GNU Scientific Library is used at every place in the code, especially the sub-package LinearAlgebra is based on it which in turn is used really everywhere in the remainder of MoleCuilder. Hence, we have to use the GPL license for the whole of MoleCuilder. In effect, GPL's COPYING was present all along and stated the terms of the GPL v2 license.
  • Hence, I added the default GPL v2 disclaimer to every source file and removed the note about a (actually missing) LICENSE file.
  • also, I added a help-redistribute action which again gives the disclaimer of the GPL v2.
  • also, I changed in the disclaimer that is printed at every program start in builder_init.cpp.
  • TEST: Added check on GPL statement present in every module to test CodeChecks project-disclaimer.
  • Property mode set to 100644
File size: 5.8 KB
Line 
1/*
2 * Project: MoleCuilder
3 * Description: creates and alters molecular systems
4 * Copyright (C) 2010-2012 University of Bonn. All rights reserved.
5 *
6 *
7 * This file is part of MoleCuilder.
8 *
9 * MoleCuilder is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation, either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * MoleCuilder 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
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with MoleCuilder. If not, see <http://www.gnu.org/licenses/>.
21 */
22/*
23 * RandomNumberDistributionFactoryUnitTest.cpp
24 *
25 * Created on: Jan 03, 2011
26 * Author: heber
27 */
28// include config.h
29#ifdef HAVE_CONFIG_H
30#include <config.h>
31#endif
32#include <cppunit/CompilerOutputter.h>
33#include <cppunit/extensions/TestFactoryRegistry.h>
34#include <cppunit/ui/text/TestRunner.h>
35#include "CodePatterns/Assert.hpp"
36
37#include "RandomNumberDistributionFactoryUnitTest.hpp"
38
39#include "RandomNumbers/RandomNumberDistribution.hpp"
40#include "RandomNumbers/RandomNumberDistribution_Encapsulation.hpp"
41#include "RandomNumbers/RandomNumberDistributionFactory.hpp"
42
43#include <boost/nondet_random.hpp>
44#include <boost/random.hpp>
45#include <boost/random/additive_combine.hpp>
46#include <boost/random/discard_block.hpp>
47#include <boost/random/inversive_congruential.hpp>
48#include <boost/random/lagged_fibonacci.hpp>
49#include <boost/random/linear_congruential.hpp>
50#include <boost/random/linear_feedback_shift.hpp>
51#include <boost/random/mersenne_twister.hpp>
52#include <boost/random/random_number_generator.hpp>
53#include <boost/random/ranlux.hpp>
54#include <boost/random/shuffle_output.hpp>
55#include <boost/random/subtract_with_carry.hpp>
56#include <boost/random/xor_combine.hpp>
57#include <boost/random/bernoulli_distribution.hpp>
58#include <boost/random/binomial_distribution.hpp>
59#include <boost/random/cauchy_distribution.hpp>
60#include <boost/random/exponential_distribution.hpp>
61#include <boost/random/gamma_distribution.hpp>
62#include <boost/random/geometric_distribution.hpp>
63#include <boost/random/linear_congruential.hpp>
64#include <boost/random/lognormal_distribution.hpp>
65#include <boost/random/normal_distribution.hpp>
66#include <boost/random/poisson_distribution.hpp>
67#include <boost/random/triangle_distribution.hpp>
68#include <boost/random/uniform_01.hpp>
69#include <boost/random/uniform_int.hpp>
70#include <boost/random/uniform_on_sphere.hpp>
71#include <boost/random/uniform_real.hpp>
72#include <boost/random/uniform_smallint.hpp>
73
74#include <typeinfo>
75
76#ifdef HAVE_TESTRUNNER
77#include "UnitTestMain.hpp"
78#endif /*HAVE_TESTRUNNER*/
79
80/********************************************** Test classes **************************************/
81
82// Registers the fixture into the 'registry'
83CPPUNIT_TEST_SUITE_REGISTRATION( RandomNumberDistributionFactoryTest );
84
85void RandomNumberDistributionFactoryTest::setUp()
86{
87 rndA = NULL;
88 rndA_1 = NULL;
89 rndA_2 = NULL;
90 rndA_3 = NULL;
91 RandomNumberDistributionFactory::getInstance();
92}
93
94void RandomNumberDistributionFactoryTest::tearDown()
95{
96 delete rndA;
97 delete rndA_1;
98 delete rndA_2;
99 delete rndA_3;
100 RandomNumberDistributionFactory::purgeInstance();
101}
102
103void RandomNumberDistributionFactoryTest::DistributionTest()
104{
105 // check the injectiveness of enum and string map
106 for (RandomNumberDistributionFactory::NameMap::const_iterator
107 iter = RandomNumberDistributionFactory::getInstance().names.begin();
108 iter != RandomNumberDistributionFactory::getInstance().names.end();
109 ++iter) {
110 CPPUNIT_ASSERT_EQUAL(
111 iter->second,
112 RandomNumberDistributionFactory::getInstance().getName(
113 RandomNumberDistributionFactory::getInstance().getEnum(
114 iter->second
115 )
116 )
117 );
118 }
119
120 // check one of the distributions in the table
121 rndA = RandomNumberDistributionFactory::getInstance().
122 ManipulablePrototypeTable[RandomNumberDistributionFactory::uniform_smallint]->clone();
123 CPPUNIT_ASSERT_EQUAL(
124 std::string(typeid(boost::uniform_smallint<> ).name()),
125 rndA->name()
126 );
127
128 // check min and max of uniform_smallint
129 CPPUNIT_ASSERT_EQUAL( 0., rndA->min() );
130 CPPUNIT_ASSERT_EQUAL( 9., rndA->max() );
131}
132
133void RandomNumberDistributionFactoryTest::PrototypeManipulationTest()
134{
135 // make unmodified clone
136 rndA_1 = RandomNumberDistributionFactory::getInstance().
137 getProduct(RandomNumberDistributionFactory::uniform_smallint);
138
139 // do something with the prototype
140 RandomNumberDistribution_Parameters *params =
141 rndA_1->getParameterSet();
142 CPPUNIT_ASSERT( 20. != rndA_1->max() );
143 params->max = 20.;
144 RandomNumberDistributionFactory::getInstance().
145 manipulatePrototype(RandomNumberDistributionFactory::uniform_smallint, *params);
146 // ... and check max
147 rndA_2 = RandomNumberDistributionFactory::getInstance().
148 getProduct(RandomNumberDistributionFactory::uniform_smallint);
149 CPPUNIT_ASSERT_EQUAL( 20., rndA_2->max());
150 CPPUNIT_ASSERT( rndA_1->max() != rndA_2->max());
151 // ... and check min (remains the same)
152 CPPUNIT_ASSERT( rndA_1->min() == rndA_2->min());
153
154 // do something with the prototype again
155 params->max = 25.;
156 RandomNumberDistributionFactory::getInstance().
157 manipulatePrototype(std::string("uniform_smallint"), *params);
158 // ... and check
159 rndA_3 = RandomNumberDistributionFactory::getInstance().
160 getProduct(RandomNumberDistributionFactory::uniform_smallint);
161 CPPUNIT_ASSERT_EQUAL( 25., rndA_3->max());
162 CPPUNIT_ASSERT( rndA_1->max() != rndA_3->max());
163 CPPUNIT_ASSERT( rndA_2->max() != rndA_3->max());
164
165 delete params;
166}
Note: See TracBrowser for help on using the repository browser.