| 38 | } |
| 39 | |
| 40 | double StoredFunction::evaluate(double value) const { |
| 41 | return m_function.interpolate(value); |
| 42 | } |
| 43 | |
| 44 | StoredFunction::SearchResult StoredFunction::search(double targetValue, double valueTolerance) const { |
| 45 | double minIndex = m_function.index(0); |
nothing calls this directly
no test coverage detected