Exponential distribution. */
| 1683 | |
| 1684 | /* Exponential distribution. */ |
| 1685 | CExponential::CExponential(double mean) |
| 1686 | { |
| 1687 | this->mean = mean; |
| 1688 | rng = gsl_init(); |
| 1689 | } |
| 1690 | |
| 1691 | double CExponential::sample() |
| 1692 | { |
nothing calls this directly
no test coverage detected