| 27 | constexpr auto RANDOM_SEED = 100; |
| 28 | |
| 29 | UniformRandomGenerator::UniformRandomGenerator() |
| 30 | : engine_(RANDOM_SEED), distribution_(0.0, 1.0) |
| 31 | { |
| 32 | } |
| 33 | |
| 34 | double UniformRandomGenerator::Sample() |
| 35 | { |
nothing calls this directly
no outgoing calls
no test coverage detected