// Copyright John Maddock 2006. // Use, modification and distribution are subject to the // Boost Software License, Version 1.0. (See accompanying file // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // // Basic sanity check that header // #includes all the files that it needs to. // #include #define T double #define Tol boost::math::tools::eps_tolerance typedef T (*F)(T); template std::pair boost::math::tools::toms748_solve(F, const T&, const T&, const T&, const T&, Tol, boost::uintmax_t&); template std::pair boost::math::tools::toms748_solve(F f, const T& ax, const T& bx, Tol tol, boost::uintmax_t& max_iter); template std::pair boost::math::tools::bracket_and_solve_root(F f, const T& guess, const T& factor, bool rising, Tol tol, boost::uintmax_t& max_iter);