Home
last modified time | relevance | path

Searched refs:cbrt_functor_2deriv (Results 1 – 6 of 6) sorted by relevance

/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
178 …dr = boost::math::tools::halley_iterate(cbrt_functor_2deriv(arg), guess, result / 10, result * 10,… in BOOST_AUTO_TEST_CASE()
183 …dr = boost::math::tools::schroder_iterate(cbrt_functor_2deriv(arg), guess, result / 10, result * 1… in BOOST_AUTO_TEST_CASE()
201 …dr = boost::math::tools::halley_iterate(cbrt_functor_2deriv(arg), guess, result / 10, result * 10,… in BOOST_AUTO_TEST_CASE()
206 …dr = boost::math::tools::schroder_iterate(cbrt_functor_2deriv(arg), guess, result / 10, result * 1… in BOOST_AUTO_TEST_CASE()
224 …dr = boost::math::tools::halley_iterate(cbrt_functor_2deriv(arg), guess, result / 10, result * 10,… in BOOST_AUTO_TEST_CASE()
229 …dr = boost::math::tools::schroder_iterate(cbrt_functor_2deriv(arg), guess, result / 10, result * 1… in BOOST_AUTO_TEST_CASE()
247 …dr = boost::math::tools::halley_iterate(cbrt_functor_2deriv(arg), guess, result / 10, result * 10,… in BOOST_AUTO_TEST_CASE()
252 …dr = boost::math::tools::schroder_iterate(cbrt_functor_2deriv(arg), guess, result / 10, result * 1… in BOOST_AUTO_TEST_CASE()
/third_party/boost/libs/math/example/
Droot_finding_multiprecision_example.cpp74 T result = halley_iterate(cbrt_functor_2deriv<T>(x), guess, min, max, digits, it); in cbrt_2deriv()
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() 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
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
126 halley_iterate(cbrt_functor_2deriv<T>(x), guess, min, max, get_digits, maxit); in cbrt_2deriv() argument
143 schroder_iterate(cbrt_functor_2deriv<T>(x), guess, min, max, get_digits, maxit); in cbrt_2deriv_s()
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() function
317 T result = halley_iterate(cbrt_functor_2deriv<T>(x), guess, min, max, get_digits, it); in cbrt_2deriv() argument
344 T result = schroder_iterate(cbrt_functor_2deriv<T>(x), guess, min, max, get_digits, it); in cbrt_2deriv_s()
/third_party/boost/libs/math/doc/roots/
Droot_finding_examples.qbk152 Next we define yet another even better functor `cbrt_functor_2deriv` that returns