| 29 | public: |
| 30 | |
| 31 | NormGenerator( double mean_ = 0.0 , double sd_ = 1.0 ) : |
| 32 | mean(mean_), sd(sd_) {} |
| 33 | |
| 34 | inline double operator()() const { |
| 35 | return mean + sd * ::norm_rand() ; |
nothing calls this directly
no outgoing calls
no test coverage detected