| 126 | typedef double (*FunPtr)(double,int,int) ; |
| 127 | |
| 128 | P0( FunPtr ptr_, const VEC_TYPE& vec_, |
| 129 | bool lower_tail = true, bool log_ = false ) : |
| 130 | ptr(ptr_), vec(vec_), lower(lower_tail), log(log_) {} |
| 131 | |
| 132 | inline double operator[]( int i) const { |
| 133 | return ptr( vec[i], lower, log ); |
nothing calls this directly
no outgoing calls
no test coverage detected