| 70 | } |
| 71 | |
| 72 | int UniformRandomInt(int min, int max) { |
| 73 | std::uniform_int_distribution<int> dist(min, max); |
| 74 | return dist(RandomEngine()); |
| 75 | } |
| 76 | |
| 77 | float UniformRandomFloat(float min, float max) { |
| 78 | std::uniform_real_distribution<float> dist(min, max); |
no outgoing calls
no test coverage detected