| 13 | #endif |
| 14 | |
| 15 | float RandomGenerator::RandomValue(int seed) const |
| 16 | { |
| 17 | return _valueTable(_seedTable(seed)) * (1.0 / static_cast<double>(RandomTable::Size)); |
| 18 | } |
| 19 | |
| 20 | float RandomGenerator::RandomValue() const |
| 21 | { |
no outgoing calls
no test coverage detected