#ifndef SPROUT_MATH_ERFC_HPP #define SPROUT_MATH_ERFC_HPP #include #include #include #include #include #include #include namespace sprout { namespace math { namespace detail { template inline SPROUT_CONSTEXPR T erfc_impl(T x) { return T(1) - sprout::math::erf(x); } template< typename FloatType, typename sprout::enabler_if::value>::type = sprout::enabler > inline SPROUT_CONSTEXPR FloatType erfc(FloatType x) { return sprout::math::isnan(x) ? x : x == std::numeric_limits::infinity() ? FloatType(0) : x == -std::numeric_limits::infinity() ? FloatType(2) #if SPROUT_USE_BUILTIN_CMATH_FUNCTION : std::erfc(x) #else : static_cast(sprout::math::detail::erfc_impl(static_cast::type>(x))) #endif ; } template< typename IntType, typename sprout::enabler_if::value>::type = sprout::enabler > inline SPROUT_CONSTEXPR double erfc(IntType x) { return sprout::math::detail::erfc(static_cast(x)); } } // namespace detail using sprout::math::detail::erfc; } // namespace math using sprout::math::erfc; } // namespace sprout #endif // #ifndef SPROUT_MATH_ERFC_HPP