| 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 "RandomNumberEngine_Creator.hpp"
|
|---|
| 34 | #include "RandomNumberEngine.hpp"
|
|---|
| 35 |
|
|---|
| 36 | #include "RandomNumberGeneratorFactory.hpp"
|
|---|
| 37 | #include "unittests/RandomNumberGeneratorFactoryUnitTest.hpp"
|
|---|
| 38 |
|
|---|
| 39 | /** Template class that encapsulates the random number engines from
|
|---|
| 40 | * random::boost.
|
|---|
| 41 | *
|
|---|
| 42 | *
|
|---|
| 43 | * We need one template parameters:
|
|---|
| 44 | * -# the engine - generates uniform random numbers
|
|---|
| 45 | */
|
|---|
| 46 | template <class engine>
|
|---|
| 47 | class RandomNumberEngine_Encapsulation : public RandomNumberEngine, public RandomNumberEngine_Creator< RandomNumberEngine_Encapsulation<engine> >
|
|---|
| 48 | {
|
|---|
| 49 | /**
|
|---|
| 50 | * Factory is friend such that it can access private cstor.
|
|---|
| 51 | */
|
|---|
| 52 | friend class RandomNumberGeneratorFactory;
|
|---|
| 53 | friend class RandomNumberGeneratorFactoryTest;
|
|---|
| 54 |
|
|---|
| 55 | public:
|
|---|
| 56 | /** Set the engine's seed.
|
|---|
| 57 | *
|
|---|
| 58 | * @param _seed seed to set to
|
|---|
| 59 | */
|
|---|
| 60 | void seed(unsigned int _seed) {
|
|---|
| 61 | engine_type.seed(_seed);
|
|---|
| 62 | }
|
|---|
| 63 |
|
|---|
| 64 | /** Getter for the type name of the internal engine.
|
|---|
| 65 | *
|
|---|
| 66 | */
|
|---|
| 67 | std::string name() {
|
|---|
| 68 | return typeid(engine_type).name();
|
|---|
| 69 | }
|
|---|
| 70 |
|
|---|
| 71 | /** Getter for the engine instance.
|
|---|
| 72 | *
|
|---|
| 73 | * @return reference to instance
|
|---|
| 74 | */
|
|---|
| 75 | engine& getEngine() {
|
|---|
| 76 | return engine_type;
|
|---|
| 77 | }
|
|---|
| 78 |
|
|---|
| 79 | /** Constructor that instantiates a specific random number generator and
|
|---|
| 80 | * distribution.
|
|---|
| 81 | * @param _engine_type instance of the desired engine
|
|---|
| 82 | */
|
|---|
| 83 | RandomNumberEngine_Encapsulation()
|
|---|
| 84 | {}
|
|---|
| 85 |
|
|---|
| 86 | /** Destructor of the class.
|
|---|
| 87 | *
|
|---|
| 88 | */
|
|---|
| 89 | virtual ~RandomNumberEngine_Encapsulation() {}
|
|---|
| 90 | private:
|
|---|
| 91 | engine engine_type;
|
|---|
| 92 | };
|
|---|
| 93 |
|
|---|
| 94 | #endif /* RANDOMNUMBERENGINE_ENCAPSULATION_HPP_ */
|
|---|