Sprout/sprout/math/sqrt.hpp

89 lines
2.7 KiB
C++
Raw Normal View History

2013-08-08 09:54:33 +00:00
/*=============================================================================
2014-01-08 07:48:12 +00:00
Copyright (c) 2011-2014 Bolero MURAKAMI
2013-08-08 09:54:33 +00:00
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 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 {
#if SPROUT_USE_BUILTIN_CMATH_FUNCTION
inline SPROUT_CONSTEXPR float
builtin_sqrt(float x) {
return __builtin_sqrtf(x);
}
inline SPROUT_CONSTEXPR double
builtin_sqrt(double x) {
return __builtin_sqrt(x);
}
inline SPROUT_CONSTEXPR long double
builtin_sqrt(long double x) {
return __builtin_sqrtl(x);
}
#endif
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_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
}
} // namespace detail
//
// sqrt
//
template<
typename FloatType,
typename sprout::enabler_if<std::is_floating_point<FloatType>::value>::type = sprout::enabler
>
inline SPROUT_CONSTEXPR FloatType
sqrt(FloatType x) {
return sprout::math::isnan(x) ? x
: 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
: sprout::math::detail::builtin_sqrt(x)
2013-05-05 15:22:08 +00:00
#else
: x == 0 ? x
: static_cast<FloatType>(sprout::math::detail::sqrt_impl(static_cast<typename sprout::math::detail::float_compute<FloatType>::type>(x)))
2013-05-05 15:22:08 +00:00
#endif
;
}
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::sqrt(static_cast<double>(x));
}
2012-05-04 05:07:36 +00:00
} // namespace math
using sprout::math::sqrt;
} // namespace sprout
#endif // #ifndef SPROUT_MATH_SQRT_HPP