/*============================================================================= Copyright (c) 2011-2014 Bolero MURAKAMI https://github.com/bolero-MURAKAMI/Sprout 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) =============================================================================*/ #ifndef SPROUT_MATH_ERFC_HPP #define SPROUT_MATH_ERFC_HPP #include #include #include #include #include #include #include namespace sprout { namespace math { namespace detail { #if SPROUT_USE_BUILTIN_CMATH_FUNCTION inline SPROUT_CONSTEXPR float builtin_erfc(float x) { return __builtin_erfcf(x); } inline SPROUT_CONSTEXPR double builtin_erfc(double x) { return __builtin_erfc(x); } inline SPROUT_CONSTEXPR long double builtin_erfc(long double x) { return __builtin_erfcl(x); } #endif template inline SPROUT_CONSTEXPR T erfc_impl(T x) { return T(1) - sprout::math::erf(x); } } // namespace detail // // erfc // 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 == sprout::numeric_limits::infinity() ? FloatType(0) : x == -sprout::numeric_limits::infinity() ? FloatType(2) #if SPROUT_USE_BUILTIN_CMATH_FUNCTION : sprout::math::detail::builtin_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::erfc(static_cast(x)); } } // namespace math using sprout::math::erfc; } // namespace sprout #endif // #ifndef SPROUT_MATH_ERFC_HPP