| 384 | */ |
| 385 | |
| 386 | double random_normal(bitgen_t *bitgen_state, double loc, double scale) { |
| 387 | return loc + scale * random_standard_normal(bitgen_state); |
| 388 | } |
| 389 | |
| 390 | double random_exponential(bitgen_t *bitgen_state, double scale) { |
| 391 | return scale * random_standard_exponential(bitgen_state); |
no test coverage detected