Normal distribution. */
| 1624 | |
| 1625 | /* Normal distribution. */ |
| 1626 | CNormal::CNormal(double mean, double stdev) |
| 1627 | { |
| 1628 | this->mean = mean; |
| 1629 | this->stdev = stdev; |
| 1630 | rng = gsl_init(); |
| 1631 | } |
| 1632 | |
| 1633 | double CNormal::sample() |
| 1634 | { |
nothing calls this directly
no test coverage detected