Gamma distribution. */
| 1816 | |
| 1817 | /* Gamma distribution. */ |
| 1818 | CGamma::CGamma(double k, double theta) |
| 1819 | { |
| 1820 | this->k = k; |
| 1821 | this->theta = theta; |
| 1822 | rng = gsl_init(); |
| 1823 | } |
| 1824 | |
| 1825 | double CGamma::sample() |
| 1826 | { |
nothing calls this directly
no test coverage detected