#ifndef SPROUT_MATH_SQRT_HPP #define SPROUT_MATH_SQRT_HPP #include #include #include #include #if SPROUT_USE_BUILTIN_CMATH_FUNCTION # include #endif namespace sprout { namespace math { namespace detail { template inline SPROUT_CONSTEXPR T sqrt_impl_1(T x, T s, T s2) { return !(s < s2) ? s2 : sprout::math::detail::sqrt_impl_1( x, (x / s + s) / 2, s ) ; } template inline SPROUT_CONSTEXPR T sqrt_impl(T x, T s) { return sprout::math::detail::sqrt_impl_1( x, (x / s + s) / 2, s ) ; } template< typename FloatType, typename sprout::enabler_if::value>::type = sprout::enabler > inline SPROUT_CONSTEXPR FloatType sqrt(FloatType x) { typedef double type; return x < 0 ? std::numeric_limits::quiet_NaN() : x == 0 ? type(0) : static_cast(sprout::math::detail::sqrt_impl( static_cast(x), x > 1 ? static_cast(x) : type(1) )); } template< typename IntType, typename sprout::enabler_if::value>::type = sprout::enabler > inline SPROUT_CONSTEXPR double sqrt(IntType x) { return sprout::math::detail::sqrt(static_cast(x)); } } // namespace detail # if SPROUT_USE_BUILTIN_CMATH_FUNCTION using std::sqrt; # else using sprout::math::detail::sqrt; # endif } // namespace math using sprout::math::sqrt; } // namespace sprout #endif // #ifndef SPROUT_MATH_SQRT_HPP