| 29 | public: |
| 30 | |
| 31 | CauchyGenerator( double location_, double scale_) : |
| 32 | location(location_) , scale(scale_) {} |
| 33 | |
| 34 | inline double operator()() const { |
| 35 | return location + scale * ::tan(M_PI * unif_rand()) ; |
nothing calls this directly
no outgoing calls
no test coverage detected