/*============================================================================= 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_ATAN_HPP #define SPROUT_MATH_ATAN_HPP #include #include #include #include #include #include #include #include #include #include #include namespace sprout { namespace math { namespace detail { #if SPROUT_USE_BUILTIN_CMATH_FUNCTION inline SPROUT_CONSTEXPR float builtin_atan(float x) { return __builtin_atanf(x); } inline SPROUT_CONSTEXPR double builtin_atan(double x) { return __builtin_atan(x); } inline SPROUT_CONSTEXPR long double builtin_atan(long double x) { return __builtin_atanl(x); } #endif template inline SPROUT_CONSTEXPR T atan_impl_1(T x, std::size_t n, std::size_t last) { return last - n == 1 ? (n % 2 ? -1 : 1) * sprout::detail::pow_n(x, 2 * n + 1) / (2 * n + 1) : sprout::math::detail::atan_impl_1(x, n, n + (last - n) / 2) + sprout::math::detail::atan_impl_1(x, n + (last - n) / 2, last) ; } 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, 0, sprout::math::factorial_limit() + 1) : x > sprout::math::root_two() - 1 ? sprout::math::quarter_pi() + sprout::math::detail::atan_impl_1((x - 1) / (x + 1), 0, sprout::math::factorial_limit() + 1) : x + sprout::math::detail::atan_impl_1(x, 1, sprout::math::factorial_limit() + 1) ; } } // namespace detail // // atan // template< typename FloatType, typename sprout::enabler_if::value>::type = sprout::enabler > inline SPROUT_CONSTEXPR FloatType atan(FloatType x) { return sprout::math::isnan(x) ? x : x == sprout::numeric_limits::infinity() ? sprout::math::half_pi() : x == -sprout::numeric_limits::infinity() ? -sprout::math::half_pi() #if SPROUT_USE_BUILTIN_CMATH_FUNCTION : sprout::math::detail::builtin_atan(x) #else : x == 0 ? x : static_cast( x < 0 ? -sprout::math::detail::atan_impl(static_cast::type>(-x)) : sprout::math::detail::atan_impl(static_cast::type>(x)) ) #endif ; } template< typename IntType, typename sprout::enabler_if::value>::type = sprout::enabler > inline SPROUT_CONSTEXPR double atan(IntType x) { return sprout::math::atan(static_cast(x)); } } // namespace math using sprout::math::atan; } // namespace sprout #endif // #ifndef SPROUT_MATH_ATAN_HPP