Sprout/sprout/math/float2_sig_exp.hpp

55 lines
1.8 KiB
C++
Raw Normal View History

2013-02-10 02:54:54 +00:00
#ifndef SPROUT_MATH_FLOAT2_SIG_EXP_HPP
#define SPROUT_MATH_FLOAT2_SIG_EXP_HPP
2013-02-14 09:02:43 +00:00
#include <limits>
#include <type_traits>
#include <sprout/config.hpp>
#include <sprout/detail/pow.hpp>
2013-04-25 15:25:35 +00:00
#include <sprout/math/detail/config.hpp>
#include <sprout/math/isnan.hpp>
#include <sprout/math/ilogb2.hpp>
#include <sprout/type_traits/enabler_if.hpp>
2013-02-07 14:12:57 +00:00
#include <sprout/utility/pair/pair.hpp>
namespace sprout {
namespace math {
namespace detail {
template<typename T>
inline SPROUT_CONSTEXPR sprout::pair<T, int>
2013-02-10 02:54:54 +00:00
float2_sig_exp_impl(T x, int exp) {
2013-02-14 09:02:43 +00:00
typedef sprout::pair<T, int> type;
2013-04-25 15:25:35 +00:00
return type(x / sprout::detail::pow_n(T(2), exp), exp);
}
template<
typename FloatType,
typename sprout::enabler_if<std::is_floating_point<FloatType>::value>::type = sprout::enabler
>
inline SPROUT_CONSTEXPR sprout::pair<FloatType, int>
2013-02-10 02:54:54 +00:00
float2_sig_exp(FloatType x) {
2013-04-25 15:25:35 +00:00
typedef sprout::pair<FloatType, int> type;
2013-05-05 15:22:08 +00:00
return sprout::math::isnan(x) ? type(x, 0)
: x == std::numeric_limits<FloatType>::infinity() ? type(std::numeric_limits<FloatType>::infinity(), 0)
2013-04-25 15:25:35 +00:00
: x == -std::numeric_limits<FloatType>::infinity() ? type(-std::numeric_limits<FloatType>::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<std::is_integral<IntType>::value>::type = sprout::enabler
>
inline SPROUT_CONSTEXPR sprout::pair<double, int>
2013-02-10 02:54:54 +00:00
float2_sig_exp(IntType x) {
return sprout::math::detail::float2_sig_exp(static_cast<double>(x));
}
} // namespace detail
2013-02-10 02:54:54 +00:00
using sprout::math::detail::float2_sig_exp;
} // namespace math
2013-02-10 02:54:54 +00:00
using sprout::math::float2_sig_exp;
} // namespace sprout
2013-02-10 02:54:54 +00:00
#endif // #ifndef SPROUT_MATH_FLOAT2_SIG_EXP_HPP