Searched defs:cbrt_functor_2deriv (Results 1 – 5 of 5) sorted by relevance
/third_party/boost/libs/math/example/ |
D | root_finding_multiprecision_example.cpp | 82 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
|
D | root_finding_example.cpp | 261 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
|
D | root_finding_start_locations.cpp | 94 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
|
D | root_finding_algorithms.cpp | 280 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/ |
D | test_root_iterations.cpp | 55 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'.
|