| 1 | /* | 
|---|
| 2 | * RandomNumberEngine_Encapsulation.hpp | 
|---|
| 3 | * | 
|---|
| 4 | *  Created on: Jan 01, 2011 | 
|---|
| 5 | *      Author: heber | 
|---|
| 6 | */ | 
|---|
| 7 |  | 
|---|
| 8 | #ifndef RANDOMNUMBERENGINE_ENCAPSULATION_HPP_ | 
|---|
| 9 | #define RANDOMNUMBERENGINE_ENCAPSULATION_HPP_ | 
|---|
| 10 |  | 
|---|
| 11 | // include config.h | 
|---|
| 12 | #ifdef HAVE_CONFIG_H | 
|---|
| 13 | #include <config.h> | 
|---|
| 14 | #endif | 
|---|
| 15 |  | 
|---|
| 16 | #include <typeinfo> | 
|---|
| 17 |  | 
|---|
| 18 | #include <boost/nondet_random.hpp> | 
|---|
| 19 | #include <boost/random.hpp> | 
|---|
| 20 | #include <boost/random/additive_combine.hpp> | 
|---|
| 21 | #include <boost/random/discard_block.hpp> | 
|---|
| 22 | #include <boost/random/inversive_congruential.hpp> | 
|---|
| 23 | #include <boost/random/lagged_fibonacci.hpp> | 
|---|
| 24 | #include <boost/random/linear_congruential.hpp> | 
|---|
| 25 | #include <boost/random/linear_feedback_shift.hpp> | 
|---|
| 26 | #include <boost/random/mersenne_twister.hpp> | 
|---|
| 27 | #include <boost/random/random_number_generator.hpp> | 
|---|
| 28 | #include <boost/random/ranlux.hpp> | 
|---|
| 29 | #include <boost/random/shuffle_output.hpp> | 
|---|
| 30 | #include <boost/random/subtract_with_carry.hpp> | 
|---|
| 31 | #include <boost/random/xor_combine.hpp> | 
|---|
| 32 |  | 
|---|
| 33 | #include "CodePatterns/Creator.hpp" | 
|---|
| 34 | #include "RandomNumberEngine.hpp" | 
|---|
| 35 |  | 
|---|
| 36 | //#include "RandomNumberGeneratorFactory.hpp" | 
|---|
| 37 | //#include "unittests/RandomNumberGeneratorFactoryUnitTest.hpp" | 
|---|
| 38 |  | 
|---|
| 39 | class RandomNumberGeneratorFactory; | 
|---|
| 40 | class RandomNumberGeneratorFactoryTest; | 
|---|
| 41 |  | 
|---|
| 42 | /** Template class that encapsulates the random number engines from | 
|---|
| 43 | *  random::boost. | 
|---|
| 44 | * | 
|---|
| 45 | * | 
|---|
| 46 | * We need one template parameters: | 
|---|
| 47 | * -# the engine - generates uniform random numbers | 
|---|
| 48 | */ | 
|---|
| 49 | template <class engine> | 
|---|
| 50 | class RandomNumberEngine_Encapsulation : | 
|---|
| 51 | public RandomNumberEngine, | 
|---|
| 52 | public Creator< | 
|---|
| 53 | RandomNumberEngine, | 
|---|
| 54 | RandomNumberEngine_Encapsulation<engine> | 
|---|
| 55 | > | 
|---|
| 56 | { | 
|---|
| 57 | /** | 
|---|
| 58 | * Factory is friend such that it can access private cstor. | 
|---|
| 59 | */ | 
|---|
| 60 | friend class RandomNumberGeneratorFactory; | 
|---|
| 61 | friend class RandomNumberGeneratorFactoryTest; | 
|---|
| 62 |  | 
|---|
| 63 | public: | 
|---|
| 64 | /** Set the engine's seed. | 
|---|
| 65 | * | 
|---|
| 66 | * @param _seed seed to set to | 
|---|
| 67 | */ | 
|---|
| 68 | void seed(unsigned int _seed) { | 
|---|
| 69 | engine_type.seed(_seed); | 
|---|
| 70 | } | 
|---|
| 71 |  | 
|---|
| 72 | /** Getter for the type name of the internal engine. | 
|---|
| 73 | * | 
|---|
| 74 | */ | 
|---|
| 75 | std::string name() { | 
|---|
| 76 | return typeid(engine_type).name(); | 
|---|
| 77 | } | 
|---|
| 78 |  | 
|---|
| 79 | /** Getter for the engine instance. | 
|---|
| 80 | * | 
|---|
| 81 | * @return reference to instance | 
|---|
| 82 | */ | 
|---|
| 83 | engine& getEngine() { | 
|---|
| 84 | return engine_type; | 
|---|
| 85 | } | 
|---|
| 86 |  | 
|---|
| 87 | /** Constructor that instantiates a specific random number generator and | 
|---|
| 88 | * distribution. | 
|---|
| 89 | * @param _engine_type instance of the desired engine | 
|---|
| 90 | */ | 
|---|
| 91 | RandomNumberEngine_Encapsulation() | 
|---|
| 92 | {} | 
|---|
| 93 |  | 
|---|
| 94 | /** Destructor of the class. | 
|---|
| 95 | * | 
|---|
| 96 | */ | 
|---|
| 97 | virtual ~RandomNumberEngine_Encapsulation() {} | 
|---|
| 98 | private: | 
|---|
| 99 | engine engine_type; | 
|---|
| 100 | }; | 
|---|
| 101 |  | 
|---|
| 102 | #endif /* RANDOMNUMBERENGINE_ENCAPSULATION_HPP_ */ | 
|---|