// unit test file acosh.hpp for the special functions test suite // (C) Copyright Hubert Holin 2003. // Distributed under 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) #include #include #include #define BOOST_TEST_MAiN #include #include template T acosh_error_evaluator(T x) { using ::std::abs; using ::std::sinh; using ::std::cosh; using ::std::numeric_limits; using ::boost::math::acosh; static T const epsilon = numeric_limits::epsilon(); T y = cosh(x); T z = acosh(y); T absolute_error = abs(z-abs(x)); T relative_error = absolute_error*abs(sinh(x)); T scaled_error = relative_error/epsilon; return(scaled_error); } BOOST_TEST_CASE_TEMPLATE_FUNCTION(acosh_test, T) { BOOST_TEST_MESSAGE("Testing acosh in the real domain for " << string_type_name::_() << "."); for (int i = 0; i <= 100; i++) { T x = static_cast(i-50)/static_cast(5); BOOST_CHECK_PREDICATE(::std::less_equal(), (acosh_error_evaluator(x)) (static_cast(4))); } // special cases for bug report: https://svn.boost.org/trac/boost/ticket/5113 T x = 1e-2f; BOOST_CHECK_PREDICATE(::std::less_equal(), (acosh_error_evaluator(x)) (static_cast(4))); x = 1e-3f; BOOST_CHECK_PREDICATE(::std::less_equal(), (acosh_error_evaluator(x)) (static_cast(4))); x = 1e-4f; BOOST_CHECK_PREDICATE(::std::less_equal(), (acosh_error_evaluator(x)) (static_cast(4))); x = 1e-5f; BOOST_CHECK_PREDICATE(::std::less_equal(), (acosh_error_evaluator(x)) (static_cast(4))); x = 1e-6f; BOOST_CHECK_PREDICATE(::std::less_equal(), (acosh_error_evaluator(x)) (static_cast(4))); // // Special cases: // if(std::numeric_limits::has_infinity) { T inf = std::numeric_limits::infinity(); boost::math::policies::policy > pol; BOOST_CHECK_EQUAL(boost::math::asinh(inf, pol), inf); } } void acosh_manual_check() { BOOST_TEST_MESSAGE(" "); BOOST_TEST_MESSAGE("acosh"); for (int i = 0; i <= 100; i++) { float xf = static_cast(i-50)/static_cast(5); double xd = static_cast(i-50)/static_cast(5); long double xl = static_cast(i-50)/static_cast(5); #ifndef BOOST_MATH_NO_LONG_DOUBLE_MATH_FUNCTIONS BOOST_TEST_MESSAGE( ::std::setw(15) << acosh_error_evaluator(xf) << ::std::setw(15) << acosh_error_evaluator(xd) << ::std::setw(15) << acosh_error_evaluator(xl)); #else BOOST_TEST_MESSAGE( ::std::setw(15) << acosh_error_evaluator(xf) << ::std::setw(15) << acosh_error_evaluator(xd)); #endif } BOOST_TEST_MESSAGE(" "); }