| 36 | typedef double (*FunPtr)(double,int) ; |
| 37 | |
| 38 | D0( FunPtr ptr_, const VEC_TYPE& vec_, bool log_ ) : |
| 39 | ptr(ptr_), vec(vec_), log(log_) {} |
| 40 | |
| 41 | inline double operator[]( int i) const { |
| 42 | return ptr( vec[i], log ); |
nothing calls this directly
no outgoing calls
no test coverage detected