Returns a uniform random float in the interval [0.0, 1.0) */
| 124 | inline uint32_t u32() {return get<uint32_t>();} |
| 125 | /** Returns a uniform random float in the interval [0.0, 1.0) */ |
| 126 | inline float uniform() {return get<float>();} |
| 127 | |
| 128 | /** Returns a normal random number with mean 0 and standard deviation 1 */ |
| 129 | inline float normal() { |
no outgoing calls
no test coverage detected