/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 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/ |
D | root_finding_multiprecision_example.cpp | 74 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
|
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 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 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()
|
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() 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/ |
D | root_finding_examples.qbk | 152 Next we define yet another even better functor `cbrt_functor_2deriv` that returns
|