Sprout/sprout/math/sqrt.hpp

67 lines
1.9 KiB
C++
Raw Normal View History

2012-05-04 05:07:36 +00:00
#ifndef SPROUT_MATH_SQRT_HPP
#define SPROUT_MATH_SQRT_HPP
#include <type_traits>
#include <sprout/config.hpp>
2013-08-06 15:15:09 +00:00
#include <sprout/limits.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>
2013-04-25 15:25:35 +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 05:07:36 +00:00
namespace sprout {
namespace math {
namespace detail {
template<typename T>
inline SPROUT_CONSTEXPR T
2013-05-05 15:22:08 +00:00
sqrt_impl_2(T x, T s, T s2) {
2012-05-04 05:07:36 +00:00
return !(s < s2) ? s2
2013-05-05 15:22:08 +00:00
: sprout::math::detail::sqrt_impl_2(x, (x / s + s) / 2, s)
2012-05-04 05:07:36 +00:00
;
}
template<typename T>
inline SPROUT_CONSTEXPR T
2013-05-05 15:22:08 +00:00
sqrt_impl_1(T x, T s) {
return sprout::math::detail::sqrt_impl_2(x, (x / s + s) / 2, s);
}
template<typename T>
inline SPROUT_CONSTEXPR T
sqrt_impl(T x) {
return sprout::math::detail::sqrt_impl_1(x, x > 1 ? x : T(1));
2012-05-04 05:07:36 +00:00
}
template<
typename FloatType,
typename sprout::enabler_if<std::is_floating_point<FloatType>::value>::type = sprout::enabler
>
inline SPROUT_CONSTEXPR FloatType
sqrt(FloatType x) {
2013-05-05 15:22:08 +00:00
return sprout::math::isnan(x) ? x
2013-08-06 15:15:09 +00:00
: x == sprout::numeric_limits<FloatType>::infinity() ? sprout::numeric_limits<FloatType>::infinity()
: x < 0 ? -sprout::numeric_limits<FloatType>::quiet_NaN()
2013-05-05 15:22:08 +00:00
#if SPROUT_USE_BUILTIN_CMATH_FUNCTION
: std::sqrt(x)
#else
: x == 0 ? x
: static_cast<FloatType>(sprout::math::detail::sqrt_impl(static_cast<typename sprout::math::detail::float_compute<FloatType>::type>(x)))
#endif
;
2012-05-04 05:07:36 +00:00
}
template<
typename IntType,
typename sprout::enabler_if<std::is_integral<IntType>::value>::type = sprout::enabler
>
inline SPROUT_CONSTEXPR double
sqrt(IntType x) {
return sprout::math::detail::sqrt(static_cast<double>(x));
}
} // namespace detail
2013-05-05 15:22:08 +00:00
using sprout::math::detail::sqrt;
2012-05-04 05:07:36 +00:00
} // namespace math
using sprout::math::sqrt;
} // namespace sprout
#endif // #ifndef SPROUT_MATH_SQRT_HPP