| 224 | typedef double (*FunPtr)(double,int,int) ; |
| 225 | |
| 226 | Q0( FunPtr ptr_, const VEC_TYPE& vec_, |
| 227 | bool lower_tail = true, bool log_ = false ) : |
| 228 | ptr(ptr_), vec(vec_), lower(lower_tail), log(log_) {} |
| 229 | |
| 230 | inline double operator[]( int i) const { |
| 231 | return ptr( vec[i], lower, log ); |
nothing calls this directly
no outgoing calls
no test coverage detected