#ifndef SPROUT_MATH_LOGB_HPP #define SPROUT_MATH_LOGB_HPP #include #include #include #include #include #include #include #include #include #include #include #include #include namespace sprout { namespace math { namespace detail { template inline SPROUT_CONSTEXPR T logb_impl_3_neg_lo(T x, T x0, T base, T exp) { return base < 1 ? sprout::math::detail::logb_impl_3_neg_lo( x, x0 * sprout::numeric_limits::radix, x / (x0 / sprout::numeric_limits::radix), exp - 1 ) : exp ; } template inline SPROUT_CONSTEXPR T logb_impl_3_neg_hi(T x, T x0, T base, T exp) { return !(base < sprout::numeric_limits::radix) ? sprout::math::detail::logb_impl_3_neg_hi( x, x0 / sprout::numeric_limits::radix, x / (x0 * sprout::numeric_limits::radix), exp + 1 ) : exp ; } template inline SPROUT_CONSTEXPR T logb_impl_3_pos_lo(T x, T x0, T base, T exp) { return base < 1 ? sprout::math::detail::logb_impl_3_pos_lo( x, x0 * sprout::numeric_limits::radix, x / (x0 / sprout::numeric_limits::radix), exp - 1 ) : exp ; } template inline SPROUT_CONSTEXPR T logb_impl_3_pos_hi(T x, T x0, T base, T exp) { return !(base < sprout::numeric_limits::radix) ? sprout::math::detail::logb_impl_3_pos_hi( x, x0 / sprout::numeric_limits::radix, x / (x0 * sprout::numeric_limits::radix), exp + 1 ) : exp ; } template inline SPROUT_CONSTEXPR T logb_impl_3(T x, T x0, T base, T exp) { return x < 1 ? base < 1 ? sprout::math::detail::logb_impl_3_neg_lo( x, x0 * sprout::numeric_limits::radix, x / (x0 / sprout::numeric_limits::radix), exp - 1 ) : !(base < sprout::numeric_limits::radix) ? sprout::math::detail::logb_impl_3_neg_hi( x, x0 / sprout::numeric_limits::radix, x / (x0 * sprout::numeric_limits::radix), exp + 1 ) : exp : base < 1 ? sprout::math::detail::logb_impl_3_pos_lo( x, x0 * sprout::numeric_limits::radix, x / (x0 / sprout::numeric_limits::radix), exp - 1 ) : !(base < sprout::numeric_limits::radix) ? sprout::math::detail::logb_impl_3_pos_hi( x, x0 / sprout::numeric_limits::radix, x / (x0 * sprout::numeric_limits::radix), exp + 1 ) : exp ; } template inline SPROUT_CONSTEXPR T logb_impl_2(T x, T x0, T exp) { return sprout::math::detail::logb_impl_3(x, x0, x / x0, exp); } template inline SPROUT_CONSTEXPR T logb_impl_1(T x, T exp) { return sprout::math::detail::logb_impl_2( x, sprout::detail::pow_n(T(sprout::numeric_limits::radix), sprout::math::itrunc(exp)), exp ); } template inline SPROUT_CONSTEXPR T logb_impl(T x) { return x < 0 ? sprout::math::detail::logb_impl_1(-x, sprout::math::trunc(sprout::math::log_a(T(sprout::numeric_limits::radix), -x))) : sprout::math::detail::logb_impl_1(x, sprout::math::trunc(sprout::math::log_a(T(sprout::numeric_limits::radix), x))) ; } template< typename FloatType, typename sprout::enabler_if::value>::type = sprout::enabler > inline SPROUT_CONSTEXPR FloatType logb(FloatType x) { return sprout::math::isnan(x) ? x : x == 0 ? -sprout::numeric_limits::infinity() #if SPROUT_USE_BUILTIN_CMATH_FUNCTION # if defined(__GNUC__) : x == -sprout::numeric_limits::infinity() ? sprout::numeric_limits::infinity() # endif : std::logb(x) #else : x == sprout::numeric_limits::infinity() || x == -sprout::numeric_limits::infinity() ? sprout::numeric_limits::infinity() : static_cast(sprout::math::detail::logb_impl(static_cast::type>(x))) #endif ; } template< typename IntType, typename sprout::enabler_if::value>::type = sprout::enabler > inline SPROUT_CONSTEXPR double logb(IntType x) { return sprout::math::detail::logb(static_cast(x)); } } // namespace detail using sprout::math::detail::logb; } // namespace math using sprout::math::logb; } // namespace sprout #endif // #ifndef SPROUT_MATH_LOGB_HPP