Sprout/sprout/math/atan.hpp

83 lines
3 KiB
C++
Raw Normal View History

2013-08-08 09:54:33 +00:00
/*=============================================================================
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)
=============================================================================*/
2012-05-04 13:13:17 +00:00
#ifndef SPROUT_MATH_ATAN_HPP
#define SPROUT_MATH_ATAN_HPP
#include <cstddef>
#include <type_traits>
#include <sprout/config.hpp>
2013-08-06 15:15:09 +00:00
#include <sprout/limits.hpp>
2012-12-08 04:45:09 +00:00
#include <sprout/detail/pow.hpp>
2012-06-23 04:22:50 +00:00
#include <sprout/math/detail/config.hpp>
2013-02-14 09:02:43 +00:00
#include <sprout/math/detail/float_compute.hpp>
2012-05-04 13:13:17 +00:00
#include <sprout/math/constants.hpp>
#include <sprout/math/factorial.hpp>
2013-04-29 01:56:46 +00:00
#include <sprout/math/isnan.hpp>
2012-05-26 15:43:38 +00:00
#include <sprout/type_traits/enabler_if.hpp>
2012-05-04 13:13:17 +00:00
namespace sprout {
namespace math {
namespace detail {
template<typename T>
inline SPROUT_CONSTEXPR T
2012-12-08 04:45:09 +00:00
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)
2012-05-04 13:13:17 +00:00
;
}
template<typename T>
inline SPROUT_CONSTEXPR T
atan_impl(T x) {
return x > sprout::math::root_two<T>() + 1
2012-12-08 04:45:09 +00:00
? sprout::math::half_pi<T>() - sprout::math::detail::atan_impl_1(1 / x, 0, sprout::math::factorial_limit<T>() + 1)
2012-05-04 13:13:17 +00:00
: x > sprout::math::root_two<T>() - 1
2012-12-08 04:45:09 +00:00
? sprout::math::quarter_pi<T>() + sprout::math::detail::atan_impl_1((x - 1) / (x + 1), 0, sprout::math::factorial_limit<T>() + 1)
: x + sprout::math::detail::atan_impl_1(x, 1, sprout::math::factorial_limit<T>() + 1)
2012-05-04 13:13:17 +00:00
;
}
template<
typename FloatType,
typename sprout::enabler_if<std::is_floating_point<FloatType>::value>::type = sprout::enabler
>
inline SPROUT_CONSTEXPR FloatType
atan(FloatType x) {
2013-04-29 01:56:46 +00:00
return sprout::math::isnan(x) ? x
2013-08-06 15:15:09 +00:00
: x == sprout::numeric_limits<FloatType>::infinity() ? sprout::math::half_pi<FloatType>()
: x == -sprout::numeric_limits<FloatType>::infinity() ? -sprout::math::half_pi<FloatType>()
#if SPROUT_USE_BUILTIN_CMATH_FUNCTION
: std::atan(x)
#else
2013-04-25 15:25:35 +00:00
: x == 0 ? x
2013-02-14 09:02:43 +00:00
: static_cast<FloatType>(
x < 0 ? -sprout::math::detail::atan_impl(static_cast<typename sprout::math::detail::float_compute<FloatType>::type>(-x))
: sprout::math::detail::atan_impl(static_cast<typename sprout::math::detail::float_compute<FloatType>::type>(x))
2013-02-14 09:02:43 +00:00
)
#endif
2013-02-14 09:02:43 +00:00
;
2012-05-04 13:13:17 +00:00
}
template<
typename IntType,
typename sprout::enabler_if<std::is_integral<IntType>::value>::type = sprout::enabler
>
inline SPROUT_CONSTEXPR double
atan(IntType x) {
return sprout::math::detail::atan(static_cast<double>(x));
}
} // namespace detail
2013-04-25 06:36:19 +00:00
using sprout::math::detail::atan;
2012-05-04 13:13:17 +00:00
} // namespace math
using sprout::math::atan;
} // namespace sprout
#endif // #ifndef SPROUT_MATH_ATAN_HPP