Ticket #1454: boost.math.diff

File boost.math.diff, 2.9 KB (added by Jens Seidel <jensseidel@…>, 15 years ago)
  • math/bindings/rr.hpp

     
    1515#include <ostream>
    1616#include <istream>
    1717#include <cmath>
    18 #include <NTL/RR.h>
     18#include <NTL/RR.h> // to which project does this file belong?
    1919
    2020#ifndef BOOST_MATH_NTL_RR_HPP
    2121#define BOOST_MATH_NTL_RR_HPP
  • math/tools/traits.hpp

     
    2929
    3030namespace detail{
    3131
    32 BOOST_MPL_HAS_XXX_TRAIT_NAMED_DEF(has_value_type, value_type, true);
    33 BOOST_MPL_HAS_XXX_TRAIT_NAMED_DEF(has_policy_type, policy_type, true);
     32BOOST_MPL_HAS_XXX_TRAIT_NAMED_DEF(has_value_type, value_type, true)
     33BOOST_MPL_HAS_XXX_TRAIT_NAMED_DEF(has_policy_type, policy_type, true)
    3434
    3535template<class D>
    3636char cdf(const D& ...);
  • math/distributions/find_location.hpp

     
    1212#include <boost/math/distributions/complement.hpp>
    1313#include <boost/math/policies/policy.hpp>
    1414#include <boost/math/tools/traits.hpp>
     15#include <boost/math/special_functions/math_fwd.hpp> // isfinite
     16#include <boost/math/policies/error_handling.hpp> // raise_domain_error
    1517#include <boost/static_assert.hpp>
    1618// using boost::math::policies::policy;
    1719// using boost::math::complement; // will be needed by users who want complement,
  • math/distributions/find_scale.hpp

     
    1313#include <boost/math/policies/policy.hpp>
    1414// using boost::math::policies::policy;
    1515#include <boost/math/tools/traits.hpp>
     16#include <boost/math/special_functions/math_fwd.hpp> // isfinite
     17#include <boost/math/policies/error_handling.hpp> // raise_domain_error
    1618#include <boost/static_assert.hpp>
    1719// using boost::math::complement; // will be needed by users who want complement,
    1820// but NOT placed here to avoid putting it in global scope.
  • math/complex/asinh.hpp

     
    66#ifndef BOOST_MATH_COMPLEX_ASINH_INCLUDED
    77#define BOOST_MATH_COMPLEX_ASINH_INCLUDED
    88
     9// why is there such a useless test? It is part of details.hpp!
    910#ifndef BOOST_MATH_COMPLEX_DETAILS_INCLUDED
    1011#  include <boost/math/complex/details.hpp>
    1112#endif
    12 #ifndef BOOST_MATH_COMPLEX_ASINH_INCLUDED
    13 #  include <boost/math/complex/asinh.hpp>
    14 #endif
     13#include <boost/math/complex/asin.hpp>
    1514
    1615namespace boost{ namespace math{
    1716