/*============================================================================= Copyright (c) 2011-2014 Bolero MURAKAMI 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) =============================================================================*/ #ifndef SPROUT_MATH_FLOAT2_SIG_EXP_HPP #define SPROUT_MATH_FLOAT2_SIG_EXP_HPP #include #include #include #include #include #include #include #include #include namespace sprout { namespace math { namespace detail { template inline SPROUT_CONSTEXPR sprout::pair float2_sig_exp_impl(T x, int exp) { typedef sprout::pair type; return type(x / sprout::detail::pow_n(T(2), exp), exp); } } // namespace detail // // float2_sig_exp // template< typename FloatType, typename sprout::enabler_if::value>::type = sprout::enabler > inline SPROUT_CONSTEXPR sprout::pair float2_sig_exp(FloatType x) { typedef sprout::pair type; return sprout::math::isnan(x) ? type(x, 0) : x == sprout::numeric_limits::infinity() ? type(sprout::numeric_limits::infinity(), 0) : x == -sprout::numeric_limits::infinity() ? type(-sprout::numeric_limits::infinity(), 0) : x == 0 ? type(x, 0) : sprout::math::detail::float2_sig_exp_impl(x, sprout::math::ilogb2(x) + 1) ; } template< typename IntType, typename sprout::enabler_if::value>::type = sprout::enabler > inline SPROUT_CONSTEXPR sprout::pair float2_sig_exp(IntType x) { return sprout::math::float2_sig_exp(static_cast(x)); } } // namespace math using sprout::math::float2_sig_exp; } // namespace sprout #endif // #ifndef SPROUT_MATH_FLOAT2_SIG_EXP_HPP