| 27 | { |
| 28 | |
| 29 | class UniformRandomGenerator |
| 30 | { |
| 31 | public: |
| 32 | UniformRandomGenerator(); |
| 33 | |
| 34 | double Sample(); |
| 35 | |
| 36 | private: |
| 37 | std::default_random_engine engine_; |
| 38 | std::uniform_real_distribution<double> distribution_; |
| 39 | }; |
| 40 | |
| 41 | class GaussianRandomGenerator |
| 42 | { |
nothing calls this directly
no outgoing calls
no test coverage detected