#ifndef SPROUT_MATH_FLOAT_SIG_EXP_HPP #define SPROUT_MATH_FLOAT_SIG_EXP_HPP #include #include #include #include #include #include #include #include #include namespace sprout { namespace math { namespace detail { template inline SPROUT_CONSTEXPR sprout::pair float_sig_exp_impl(T x, int exp) { typedef sprout::pair type; return type(x / sprout::detail::pow_n(T(std::numeric_limits::radix), exp), exp); } template< typename FloatType, typename sprout::enabler_if::value>::type = sprout::enabler > inline SPROUT_CONSTEXPR sprout::pair float_sig_exp(FloatType x) { typedef sprout::pair type; return sprout::math::isnan(x) ? type(x, 0) : x == std::numeric_limits::infinity() ? type(std::numeric_limits::infinity(), 0) : x == -std::numeric_limits::infinity() ? type(-std::numeric_limits::infinity(), 0) : x == 0 ? type(x, 0) : sprout::math::detail::float_sig_exp_impl(x, sprout::math::ilogb(x) + 1) ; } template< typename IntType, typename sprout::enabler_if::value>::type = sprout::enabler > inline SPROUT_CONSTEXPR sprout::pair float_sig_exp(IntType x) { return sprout::math::detail::float_sig_exp(static_cast(x)); } } // namespace detail using sprout::math::detail::float_sig_exp; } // namespace math using sprout::math::float_sig_exp; } // namespace sprout #endif // #ifndef SPROUT_MATH_FLOAT_SIG_EXP_HPP