#ifndef SPROUT_MATH_ACOSH_HPP #define SPROUT_MATH_ACOSH_HPP #include #include #include #include #include #include #include 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 ? FloatType(0) : 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 using NS_SPROUT_MATH_DETAIL::acosh; } // namespace math using sprout::math::acosh; } // namespace sprout #endif // #ifndef SPROUT_MATH_ACOSH_HPP