| 466 | } |
| 467 | |
| 468 | double random_standard_cauchy(bitgen_t *bitgen_state) { |
| 469 | return random_standard_normal(bitgen_state) / random_standard_normal(bitgen_state); |
| 470 | } |
| 471 | |
| 472 | double random_pareto(bitgen_t *bitgen_state, double a) { |
| 473 | return expm1(random_standard_exponential(bitgen_state) / a); |
nothing calls this directly
no test coverage detected