1 | /*
|
---|
2 | * RandomNumberEngine.hpp
|
---|
3 | *
|
---|
4 | * Created on: Jan 01, 2011
|
---|
5 | * Author: heber
|
---|
6 | */
|
---|
7 |
|
---|
8 | #ifndef RANDOMNUMBERENGINE_HPP_
|
---|
9 | #define RANDOMNUMBERENGINE_HPP_
|
---|
10 |
|
---|
11 | // include config.h
|
---|
12 | #ifdef HAVE_CONFIG_H
|
---|
13 | #include <config.h>
|
---|
14 | #endif
|
---|
15 |
|
---|
16 | class RandomNumberEngineFactoryTest;
|
---|
17 | class RandomNumberGenerator;
|
---|
18 | class RandomNumberEngine_Parameters;
|
---|
19 |
|
---|
20 | /** Abstract base class for a random number engine.
|
---|
21 | *
|
---|
22 | * This class represents the interface to the random number engine.
|
---|
23 | * Hence, they all can be accessed the same way.
|
---|
24 | *
|
---|
25 | * It is also the base class that is needed for RandomNumberGeneratorFactory.
|
---|
26 | */
|
---|
27 | class RandomNumberEngine
|
---|
28 | {
|
---|
29 | /**
|
---|
30 | * test has to access cstor/dstor.
|
---|
31 | */
|
---|
32 | friend class RandomNumberEngineFactoryTest;
|
---|
33 |
|
---|
34 | /**
|
---|
35 | * RandomNumberGenerator(_Encapsulation) needs access to dstor.
|
---|
36 | */
|
---|
37 | friend class RandomNumberGenerator;
|
---|
38 |
|
---|
39 | public:
|
---|
40 | /** Getter for the whole set of possible parameters.
|
---|
41 | *
|
---|
42 | * @return filled instance of RandomNumberEngine_Parameters
|
---|
43 | */
|
---|
44 | virtual RandomNumberEngine_Parameters* getParameterSet() const=0;
|
---|
45 |
|
---|
46 | /** Set the generator's seed.
|
---|
47 | *
|
---|
48 | * @param _seed seed to set to
|
---|
49 | */
|
---|
50 | virtual void seed(unsigned int _seed)=0;
|
---|
51 |
|
---|
52 | /** Getter for the generator's seed.
|
---|
53 | *
|
---|
54 | * @return _seed seed to set to
|
---|
55 | */
|
---|
56 | virtual unsigned int getseed() const = 0;
|
---|
57 |
|
---|
58 | /** Getter for smallest value the engine produces.
|
---|
59 | *
|
---|
60 | * @return smallest value
|
---|
61 | */
|
---|
62 | virtual double min() const=0;
|
---|
63 |
|
---|
64 | /** Getter for largest value the engine produces.
|
---|
65 | *
|
---|
66 | * @return largest value
|
---|
67 | */
|
---|
68 | virtual double max() const=0;
|
---|
69 |
|
---|
70 | /** Getter for the type name of the internal engine.
|
---|
71 | *
|
---|
72 | */
|
---|
73 | virtual std::string name()=0;
|
---|
74 |
|
---|
75 | /** Destructor of class RandomNumberEngine.
|
---|
76 | *
|
---|
77 | * @note must be public such that instances from factory can be destroyed.
|
---|
78 | *
|
---|
79 | */
|
---|
80 | virtual ~RandomNumberEngine() {};
|
---|
81 | protected:
|
---|
82 | /** Constructor of class RandomNumberEngine.
|
---|
83 | *
|
---|
84 | * @note is protected such that instances can only be created by the factory.
|
---|
85 | */
|
---|
86 | RandomNumberEngine() {};
|
---|
87 | };
|
---|
88 |
|
---|
89 | #endif /* RANDOMNUMBERENGINE_HPP_ */
|
---|