Home
last modified time | relevance | path

Searched defs:cbrt_functor_2deriv (Results 1 – 5 of 5) sorted by relevance

/third_party/boost/libs/math/example/
Droot_finding_multiprecision_example.cpp82 struct cbrt_functor_2deriv struct
84 cbrt_functor_2deriv(T const& to_find_root_of) : a(to_find_root_of) in cbrt_functor_2deriv() function
100 }; // struct cbrt_functor_2deriv argument
Droot_finding_example.cpp261 struct cbrt_functor_2deriv struct
264 cbrt_functor_2deriv(T const& to_find_root_of) : a(to_find_root_of) in cbrt_functor_2deriv() argument
268 std::tuple<T, T, T> operator()(T const& x) in operator ()()
298 T result = halley_iterate(cbrt_functor_2deriv<T>(x), guess, min, max, get_digits, maxit); in cbrt_2deriv() argument
Droot_finding_start_locations.cpp94 struct cbrt_functor_2deriv struct
97 cbrt_functor_2deriv(T const& to_find_root_of) : a(to_find_root_of) in cbrt_functor_2deriv() argument
101 std::tuple<T, T, T> operator()(T const& x) in operator ()()
126 halley_iterate(cbrt_functor_2deriv<T>(x), guess, min, max, get_digits, maxit); in cbrt_2deriv() argument
Droot_finding_algorithms.cpp280 struct cbrt_functor_2deriv struct
282 cbrt_functor_2deriv(T const& to_find_root_of) : a(to_find_root_of) in cbrt_functor_2deriv() argument
286 std::tuple<T, T, T> operator()(T const& x) in operator ()()
317 T result = halley_iterate(cbrt_functor_2deriv<T>(x), guess, min, max, get_digits, it); in cbrt_2deriv() argument
/third_party/boost/libs/math/test/
Dtest_root_iterations.cpp55 struct cbrt_functor_2deriv struct
57 cbrt_functor_2deriv(double const& to_find_root_of) : a(to_find_root_of) in cbrt_functor_2deriv() function
61 std::tuple<double, double, double> operator()(double const& x) in operator ()()
69 double a; // to be 'cube_rooted'.