| 227 | } |
| 228 | |
| 229 | void compareFunctionValue(std::vector<TestFunction *> funcs, |
| 230 | std::function<Function *(const DataTable &table)> approx_gen_func, |
| 231 | size_t numSamplePoints, size_t numEvalPoints, |
| 232 | double one_eps, double two_eps, double inf_eps) |
| 233 | { |
| 234 | for(auto &exact : funcs) |
| 235 | { |
| 236 | compareFunctionValue(exact, approx_gen_func, numSamplePoints, numEvalPoints, one_eps, two_eps, inf_eps); |
| 237 | } |
| 238 | } |
| 239 | void compareFunctionValue(TestFunction *exact, |
| 240 | std::function<Function *(const DataTable &table)> approx_gen_func, |
| 241 | size_t numSamplePoints, size_t numEvalPoints, |
no test coverage detected