| 170 | } |
| 171 | |
| 172 | void random_standard_normal_fill(bitgen_t *bitgen_state, npy_intp cnt, double *out) { |
| 173 | npy_intp i; |
| 174 | for (i = 0; i < cnt; i++) { |
| 175 | out[i] = random_standard_normal(bitgen_state); |
| 176 | } |
| 177 | } |
| 178 | |
| 179 | float random_standard_normal_f(bitgen_t *bitgen_state) { |
| 180 | uint32_t r; |
nothing calls this directly
no test coverage detected