| 29 | public: |
| 30 | |
| 31 | LNormGenerator( double meanlog_ = 0.0 , double sdlog_ = 1.0 ) : |
| 32 | meanlog(meanlog_), sdlog(sdlog_) {} |
| 33 | |
| 34 | inline double operator()() const { |
| 35 | return ::exp( meanlog + sdlog * ::norm_rand() ) ; |
nothing calls this directly
no outgoing calls
no test coverage detected