#ifndef SPROUT_MATH_ACOSH_HPP #define SPROUT_MATH_ACOSH_HPP #include #include #include #include #include #include #if SPROUT_USE_BUILTIN_CMATH_FUNCTION # include #endif namespace sprout { namespace math { namespace detail { template< typename FloatType, typename sprout::enabler_if::value>::type = sprout::enabler > inline SPROUT_CONSTEXPR FloatType acosh(FloatType x) { return x < 1 ? std::numeric_limits::quiet_NaN() : x == std::numeric_limits::infinity() ? std::numeric_limits::infinity() : sprout::math::log(x + sprout::math::sqrt(x * x - 1)) ; } template< typename IntType, typename sprout::enabler_if::value>::type = sprout::enabler > inline SPROUT_CONSTEXPR double acosh(IntType x) { return sprout::math::detail::acosh(static_cast(x)); } } // namespace detail # if SPROUT_USE_BUILTIN_CMATH_FUNCTION using std::acosh; # else using sprout::math::detail::acosh; # endif } // namespace math using sprout::math::acosh; } // namespace sprout #endif // #ifndef SPROUT_MATH_ACOSH_HPP