#ifndef SPROUT_MATH_LOGB_HPP #define SPROUT_MATH_LOGB_HPP #include #include #include #include #include #include #include #include #include #include namespace sprout { namespace math { namespace detail { template inline SPROUT_CONSTEXPR T logb_impl_2_neg_lo(T x, T x0, T base, T exp) { return base < 1 ? sprout::math::detail::logb_impl_2_neg_lo( x, x0 * std::numeric_limits::radix, x / (x0 / std::numeric_limits::radix), exp - 1 ) : exp ; } template inline SPROUT_CONSTEXPR T logb_impl_2_neg_hi(T x, T x0, T base, T exp) { return !(base < std::numeric_limits::radix) ? sprout::math::detail::logb_impl_2_neg_hi( x, x0 / std::numeric_limits::radix, x / (x0 * std::numeric_limits::radix), exp + 1 ) : exp ; } template inline SPROUT_CONSTEXPR T logb_impl_2_pos_lo(T x, T x0, T base, T exp) { return base < 1 ? sprout::math::detail::logb_impl_2_pos_lo( x, x0 * std::numeric_limits::radix, x / (x0 / std::numeric_limits::radix), exp + 1 ) : exp ; } template inline SPROUT_CONSTEXPR T logb_impl_2_pos_hi(T x, T x0, T base, T exp) { return !(base < std::numeric_limits::radix) ? sprout::math::detail::logb_impl_2_pos_hi( x, x0 / std::numeric_limits::radix, x / (x0 * std::numeric_limits::radix), exp - 1 ) : exp ; } template inline SPROUT_CONSTEXPR T logb_impl_2(T x, T x0, T base, T exp) { return exp < 0 ? base < 1 ? sprout::math::detail::logb_impl_2_neg_lo( x, x0 * std::numeric_limits::radix, x / (x0 / std::numeric_limits::radix), exp - 1 ) : !(base < std::numeric_limits::radix) ? sprout::math::detail::logb_impl_2_neg_hi( x, x0 / std::numeric_limits::radix, x / (x0 * std::numeric_limits::radix), exp + 1 ) : exp : base < 1 ? sprout::math::detail::logb_impl_2_pos_lo( x, x0 * std::numeric_limits::radix, x / (x0 / std::numeric_limits::radix), exp + 1 ) : !(base < std::numeric_limits::radix) ? sprout::math::detail::logb_impl_2_pos_hi( x, x0 / std::numeric_limits::radix, x / (x0 * std::numeric_limits::radix), exp - 1 ) : exp ; } template inline SPROUT_CONSTEXPR T logb_impl_1(T x, T x0, T exp) { return sprout::math::detail::logb_impl_2(x, x0, x / x0, exp); } template inline SPROUT_CONSTEXPR T logb_impl(T x, T exp) { return sprout::math::detail::logb_impl_1( x, sprout::detail::pow_n(T(std::numeric_limits::radix), sprout::math::itrunc(exp)), exp ); } template< typename FloatType, typename sprout::enabler_if::value>::type = sprout::enabler > inline SPROUT_CONSTEXPR FloatType logb(FloatType x) { return x == 0 ? -std::numeric_limits::infinity() : x == std::numeric_limits::infinity() || x == -std::numeric_limits::infinity() ? std::numeric_limits::infinity() : x < 0 ? sprout::math::detail::logb_impl(-x, sprout::math::trunc(sprout::math::log_a(FloatType(std::numeric_limits::radix), -x))) : sprout::math::detail::logb_impl(x, sprout::math::trunc(sprout::math::log_a(FloatType(std::numeric_limits::radix), x))) ; } 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 NS_SPROUT_MATH_DETAIL::logb; } // namespace math using sprout::math::logb; } // namespace sprout #endif // #ifndef SPROUT_MATH_LOGB_HPP