| 124 | } |
| 125 | |
| 126 | Real RandomNormal (Real mean, Real stddev) |
| 127 | { |
| 128 | std::normal_distribution<Real> distribution(mean, stddev); |
| 129 | int tid = OpenMP::get_thread_num(); |
| 130 | return distribution(generators[tid]); |
| 131 | } |
| 132 | |
| 133 | Real Random () |
| 134 | { |
no test coverage detected