/*============================================================================= Copyright (c) 2011-2013 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_TGAMMA_HPP #define SPROUT_MATH_TGAMMA_HPP #include #include #include #include #include #include #include #include #include #include #include #include #include #include HDR_ALGORITHM_MIN_MAX_SSCRISK_CEL_OR_SPROUT namespace sprout { namespace math { namespace detail { template inline SPROUT_CONSTEXPR T tgamma_impl_y(T w) { return (((((((((((( -1.99542863674e-7 * w + 1.337767384067e-6) * w - 2.591225267689e-6) * w - 1.7545539395205e-5) * w + 1.45596568617526e-4) * w - 3.60837876648255e-4) * w - 8.04329819255744e-4) * w + 0.008023273027855346) * w - 0.017645244547851414) * w - 0.024552490005641278) * w + 0.19109110138763841) * w - 0.233093736421782878) * w - 0.422784335098466784) * w + 0.99999999999999999 ; } template inline SPROUT_CONSTEXPR T tgamma_impl_t_pos(T x, std::size_t n, std::size_t last) { return last - n == 1 ? x - static_cast(n) : sprout::math::detail::tgamma_impl_t_pos(x, n, n + (last - n) / 2) * sprout::math::detail::tgamma_impl_t_pos(x, n + (last - n) / 2, last) ; } template inline SPROUT_CONSTEXPR T tgamma_impl_t_neg(T x, std::size_t n, std::size_t last) { return last - n == 1 ? x + static_cast(n) : sprout::math::detail::tgamma_impl_t_neg(x, n, n + (last - n) / 2) * sprout::math::detail::tgamma_impl_t_neg(x, n + (last - n) / 2, last) ; } template inline SPROUT_CONSTEXPR T tgamma_impl_t_pos_rec(T x, std::size_t n, std::size_t last) { return last - n == 1 ? T(1) / (x - static_cast(n)) : sprout::math::detail::tgamma_impl_t_pos_rec(x, n, n + (last - n) / 2) * sprout::math::detail::tgamma_impl_t_pos_rec(x, n + (last - n) / 2, last) ; } template inline SPROUT_CONSTEXPR T tgamma_impl_t_neg_rec(T x, std::size_t n, std::size_t last) { return last - n == 1 ? T(1) / (x + static_cast(n)) : sprout::math::detail::tgamma_impl_t_neg_rec(x, n, n + (last - n) / 2) * sprout::math::detail::tgamma_impl_t_neg_rec(x, n + (last - n) / 2, last) ; } template inline SPROUT_CONSTEXPR T tgamma_impl_2_pos_rec(T x, T y, T t) { return t == 0 ? sprout::numeric_limits::infinity() : (x - T(1)) / y / t ; } template inline SPROUT_CONSTEXPR T tgamma_impl_1(T x, int n) { return n == 1 ? (x - T(1)) / sprout::math::detail::tgamma_impl_y(x - (n + 2)) : n == 0 ? T(1) / sprout::math::detail::tgamma_impl_y(x - (n + 2)) : n == static_cast(sprout::math::factorial_limit()) ? sprout::math::detail::tgamma_impl_2_pos_rec(x, sprout::math::detail::tgamma_impl_y(x - (n + 2)), sprout::math::detail::tgamma_impl_t_pos_rec(x, 2, n + 1)) : n == -static_cast(sprout::math::factorial_limit()) ? T(1) / sprout::math::detail::tgamma_impl_y(x - (n + 2)) * sprout::math::detail::tgamma_impl_t_neg_rec(x, 0, -n) : n > 1 ? (x - T(1)) / sprout::math::detail::tgamma_impl_y(x - (n + 2)) * sprout::math::detail::tgamma_impl_t_pos(x, 2, n + 1) : T(1) / sprout::math::detail::tgamma_impl_y(x - (n + 2)) / sprout::math::detail::tgamma_impl_t_neg(x, 0, -n) ; } template inline SPROUT_CONSTEXPR T tgamma_impl(T x) { return sprout::math::detail::tgamma_impl_1( x, sprout::clamp( sprout::math::iround(x - T(2)), -static_cast(sprout::math::factorial_limit()), static_cast(sprout::math::factorial_limit()) ) ); } template< typename FloatType, typename sprout::enabler_if::value>::type = sprout::enabler > inline SPROUT_CONSTEXPR FloatType tgamma(FloatType x) { return sprout::math::isnan(x) ? x : x == 0 ? sprout::math::copysign(sprout::numeric_limits::infinity(), x) : x == -sprout::numeric_limits::infinity() ? -sprout::numeric_limits::quiet_NaN() : x == sprout::numeric_limits::infinity() ? sprout::numeric_limits::infinity() : x < 0 && sprout::math::is_integer(x) ? sprout::numeric_limits::quiet_NaN() #if SPROUT_USE_BUILTIN_CMATH_FUNCTION : std::tgamma(x) #else : static_cast(sprout::math::detail::tgamma_impl(static_cast::type>(x))) #endif ; } template< typename IntType, typename sprout::enabler_if::value>::type = sprout::enabler > inline SPROUT_CONSTEXPR double tgamma(IntType x) { return sprout::math::detail::tgamma(static_cast(x)); } } // namespace detail // // issue: // [ !SPROUT_USE_BUILTIN_CMATH_FUNCTION ] // tgamma(-0) returns - . // # returns + . ( same as tgamma(+0) ) // using sprout::math::detail::tgamma; } // namespace math using sprout::math::tgamma; } // namespace sprout #endif // #ifndef SPROUT_MATH_TGAMMA_HPP