real_concept_test_instances_6.cpp 1004 B

1234567891011121314151617181920212223242526272829
  1. // Copyright John Maddock 2011.
  2. // Use, modification and distribution are subject to the
  3. // Boost Software License, Version 1.0. (See accompanying file
  4. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. #include "pch.hpp"
  6. #ifndef BOOST_BUILD_PCH_ENABLED
  7. #define BOOST_MATH_OVERFLOW_ERROR_POLICY ignore_error
  8. #include <boost/math/special_functions/hypot.hpp>
  9. #include <boost/math/special_functions/cbrt.hpp>
  10. #include <boost/math/special_functions/log1p.hpp>
  11. #include <boost/math/special_functions/expm1.hpp>
  12. #include <boost/math/special_functions/powm1.hpp>
  13. #include <boost/math/special_functions/sqrt1pm1.hpp>
  14. #include <boost/math/special_functions/sin_pi.hpp>
  15. #include <boost/math/special_functions/cos_pi.hpp>
  16. #endif
  17. #include <boost/math/tools/config.hpp>
  18. #include <boost/math/concepts/real_concept.hpp>
  19. #ifndef BOOST_MATH_NO_LONG_DOUBLE_MATH_FUNCTIONS
  20. #define BOOST_MATH_TEST_TYPE boost::math::concepts::real_concept
  21. #define TEST_GROUP_6
  22. #include "test_instances.hpp"
  23. #endif