| 470 | } |
| 471 | |
| 472 | double random_pareto(bitgen_t *bitgen_state, double a) { |
| 473 | return expm1(random_standard_exponential(bitgen_state) / a); |
| 474 | } |
| 475 | |
| 476 | double random_weibull(bitgen_t *bitgen_state, double a) { |
| 477 | if (a == 0.0) { |
nothing calls this directly
no test coverage detected