| 26 | } |
| 27 | |
| 28 | double random_standard_uniform(bitgen_t *bitgen_state) { |
| 29 | return next_double(bitgen_state); |
| 30 | } |
| 31 | |
| 32 | void random_standard_uniform_fill(bitgen_t *bitgen_state, npy_intp cnt, double *out) { |
| 33 | npy_intp i; |
nothing calls this directly
no test coverage detected