#ifndef SPROUT_MATH_ERF_HPP #define SPROUT_MATH_ERF_HPP #include #include #include #include #include #include #include #include #include #include namespace sprout { namespace math { namespace detail { template inline SPROUT_CONSTEXPR T erf_impl_1(T x, std::size_t n, std::size_t last) { return last - n == 1 ? (n % 2 ? -1 : 1) / sprout::math::factorial(n) / (2 * n + 1) * sprout::detail::pow_n(x, 2 * n + 1) : sprout::math::detail::erf_impl_1(x, n, n + (last - n) / 2) + sprout::math::detail::erf_impl_1(x, n + (last - n) / 2, last) ; } template inline SPROUT_CONSTEXPR T erf_impl(T x) { return sprout::math::two_div_root_pi() * (x + sprout::math::detail::erf_impl_1(x, 1, sprout::math::factorial_limit() + 1)) ; } template inline SPROUT_CONSTEXPR T erf_impl(T x2, T a) { return T(1) - sprout::math::exp(-x2 / (T(1) + a * x2) * (sprout::math::quarter_pi() + a * x2)); } template< typename FloatType, typename sprout::enabler_if::value>::type = sprout::enabler > inline SPROUT_CONSTEXPR FloatType erf(FloatType x) { typedef typename sprout::math::detail::float_compute::type type; return x == 0 ? FloatType(0) : x == std::numeric_limits::infinity() ? FloatType(1) : x == -std::numeric_limits::infinity() ? FloatType(-1) : static_cast(sprout::math::detail::erf_impl(static_cast(x))) ; } template< typename IntType, typename sprout::enabler_if::value>::type = sprout::enabler > inline SPROUT_CONSTEXPR double erf(IntType x) { return sprout::math::detail::erf(static_cast(x)); } } // namespace detail using NS_SPROUT_MATH_DETAIL::erf; } // namespace math using sprout::math::erf; } // namespace sprout #endif // #ifndef SPROUT_MATH_ERF_HPP