Exponential distribution. */
| 665 | |
| 666 | /* Exponential distribution. */ |
| 667 | class CExponential : public CSample |
| 668 | { |
| 669 | public: |
| 670 | CExponential(double mean); |
| 671 | double sample(); |
| 672 | int textDescr(char *s, int len); |
| 673 | int timeDescr(char *s, int len); |
| 674 | double cdfInv(double percentile); |
| 675 | private: |
| 676 | double mean; |
| 677 | gsl_rng *rng; |
| 678 | }; |
| 679 | |
| 680 | /* Weibull distribution. */ |
| 681 | class CWeibull : public CSample |
nothing calls this directly
no outgoing calls
no test coverage detected