Sprout/sprout/math/sqrt.hpp

58 lines
1.8 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 <limits>
#include <type_traits>
#include <sprout/config.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
sqrt_impl_1(T x, T s, T s2) {
return !(s < s2) ? s2
2013-02-14 09:02:43 +00:00
: sprout::math::detail::sqrt_impl_1(x, (x / s + s) / 2, s)
2012-05-04 05:07:36 +00:00
;
}
template<typename T>
inline SPROUT_CONSTEXPR T
sqrt_impl(T x, T s) {
2013-02-14 09:02:43 +00:00
return sprout::math::detail::sqrt_impl_1(x, (x / s + s) / 2, s);
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-02-14 09:02:43 +00:00
typedef typename sprout::math::detail::float_compute<FloatType>::type type;
return x == 0 ? FloatType(0)
: x == std::numeric_limits<FloatType>::infinity() ? std::numeric_limits<FloatType>::infinity()
2013-04-25 15:25:35 +00:00
: sprout::math::isnan(x) ? std::numeric_limits<FloatType>::quiet_NaN()
2013-02-14 09:02:43 +00:00
: x < 0 ? std::numeric_limits<FloatType>::quiet_NaN()
: static_cast<FloatType>(sprout::math::detail::sqrt_impl(static_cast<type>(x), x > 1 ? static_cast<type>(x) : type(1)));
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
2012-06-23 04:22:50 +00:00
using NS_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