|
template<class F , class T > |
void | boost::math::tools::detail::bracket (F f, T &a, T &b, T c, T &fa, T &fb, T &d, T &fd) |
|
template<class T > |
T | boost::math::tools::detail::safe_div (T num, T denom, T r) |
|
template<class T > |
T | boost::math::tools::detail::secant_interpolate (const T &a, const T &b, const T &fa, const T &fb) |
|
template<class T > |
T | boost::math::tools::detail::quadratic_interpolate (const T &a, const T &b, T const &d, const T &fa, const T &fb, T const &fd, unsigned count) |
|
template<class T > |
T | boost::math::tools::detail::cubic_interpolate (const T &a, const T &b, const T &d, const T &e, const T &fa, const T &fb, const T &fd, const T &fe) |
|
template<class F , class T , class Tol , class Policy > |
std::pair< T, T > | boost::math::tools::toms748_solve (F f, const T &ax, const T &bx, const T &fax, const T &fbx, Tol tol, boost::uintmax_t &max_iter, const Policy &pol) |
|
template<class F , class T , class Tol > |
std::pair< T, T > | boost::math::tools::toms748_solve (F f, const T &ax, const T &bx, const T &fax, const T &fbx, Tol tol, boost::uintmax_t &max_iter) |
|
template<class F , class T , class Tol , class Policy > |
std::pair< T, T > | boost::math::tools::toms748_solve (F f, const T &ax, const T &bx, Tol tol, boost::uintmax_t &max_iter, const Policy &pol) |
|
template<class F , class T , class Tol > |
std::pair< T, T > | boost::math::tools::toms748_solve (F f, const T &ax, const T &bx, Tol tol, boost::uintmax_t &max_iter) |
|
template<class F , class T , class Tol , class Policy > |
std::pair< T, T > | boost::math::tools::bracket_and_solve_root (F f, const T &guess, T factor, bool rising, Tol tol, boost::uintmax_t &max_iter, const Policy &pol) |
|
template<class F , class T , class Tol > |
std::pair< T, T > | boost::math::tools::bracket_and_solve_root (F f, const T &guess, const T &factor, bool rising, Tol tol, boost::uintmax_t &max_iter) |
|