| 28 | class HyperGenerator : public Generator<double>{ |
| 29 | public: |
| 30 | HyperGenerator( double nn1_, double nn2_, double kk_) : |
| 31 | nn1(nn1_), nn2(nn2_), kk(kk_){} |
| 32 | inline double operator()() const { return ::Rf_rhyper(nn1, nn2, kk) ;} |
| 33 | private: |
| 34 | double nn1, nn2, kk ; |
nothing calls this directly
no outgoing calls
no test coverage detected