#ifndef SPROUT_MATH_ATAN_HPP #define SPROUT_MATH_ATAN_HPP #include #include #include #include #include #include #if SPROUT_USE_BUILTIN_CMATH_FUNCTION # include #endif namespace sprout { namespace math { namespace detail { template inline SPROUT_CONSTEXPR T atan_impl_2(T x, T tmp, std::size_t n, T x2n1) { return n > sprout::math::factorial_limit() ? tmp : sprout::math::detail::atan_impl_2( x, tmp + (n % 2 ? -1 : 1) * x2n1 / (2 * n + 1), n + 1, x2n1 * x * x ) ; } template inline SPROUT_CONSTEXPR T atan_impl_1(T x) { return sprout::math::detail::atan_impl_2( x, x, 1, x * x * x ); } template inline SPROUT_CONSTEXPR T atan_impl(T x) { return x > sprout::math::root_two() + 1 ? sprout::math::half_pi() - sprout::math::detail::atan_impl_1(1 / x) : x > sprout::math::root_two() - 1 ? sprout::math::quarter_pi() + sprout::math::detail::atan_impl_1((x - 1) / (x + 1)) : sprout::math::detail::atan_impl_1(x) ; } template< typename FloatType, typename sprout::enabler_if::value>::type = sprout::enabler > inline SPROUT_CONSTEXPR FloatType atan(FloatType x) { typedef double type; return static_cast( x < 0 ? -sprout::math::detail::atan_impl(static_cast(-x)) : sprout::math::detail::atan_impl(static_cast(x)) ); } template< typename IntType, typename sprout::enabler_if::value>::type = sprout::enabler > inline SPROUT_CONSTEXPR double atan(IntType x) { return sprout::math::detail::atan(static_cast(x)); } } // namespace detail # if SPROUT_USE_BUILTIN_CMATH_FUNCTION using std::atan; # else using sprout::math::detail::atan; # endif } // namespace math using sprout::math::atan; } // namespace sprout #endif // #ifndef SPROUT_MATH_ATAN_HPP