D | toms748_solve.hpp | 295 std::pair<T, T> toms748_solve(F f, const T& ax, const T& bx, const T& fax, const T& fbx, Tol tol, b… in toms748_solve() argument 322 fa = fax; in toms748_solve() 478 inline std::pair<T, T> toms748_solve(F f, const T& ax, const T& bx, const T& fax, const T& fbx, Tol… in toms748_solve() argument 480 return toms748_solve(f, ax, bx, fax, fbx, tol, max_iter, policies::policy<>()); in toms748_solve()
|