Sprout/sprout/math/float_sig_exp.hpp

62 lines
2.2 KiB
C++
Raw Normal View History

2013-08-08 09:54:33 +00:00
/*=============================================================================
2016-02-25 09:48:28 +00:00
Copyright (c) 2011-2016 Bolero MURAKAMI
2013-08-08 09:54:33 +00:00
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)
=============================================================================*/
2013-02-10 02:54:54 +00:00
#ifndef SPROUT_MATH_FLOAT_SIG_EXP_HPP
#define SPROUT_MATH_FLOAT_SIG_EXP_HPP
#include <type_traits>
#include <sprout/config.hpp>
2013-08-06 15:15:09 +00:00
#include <sprout/limits.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/ilogb.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
float_sig_exp_impl(T x, int exp) {
2013-02-14 09:02:43 +00:00
typedef sprout::pair<T, int> type;
2013-08-06 15:15:09 +00:00
return type(x / sprout::detail::pow_n(T(sprout::numeric_limits<T>::radix), exp), exp);
}
} // namespace detail
//
// float_sig_exp
//
template<
typename FloatType,
typename sprout::enabler_if<std::is_floating_point<FloatType>::value>::type = sprout::enabler
>
inline SPROUT_CONSTEXPR sprout::pair<FloatType, int>
float_sig_exp(FloatType x) {
typedef sprout::pair<FloatType, int> type;
return sprout::math::isnan(x) ? type(x, 0)
: x == sprout::numeric_limits<FloatType>::infinity() ? type(sprout::numeric_limits<FloatType>::infinity(), 0)
: x == -sprout::numeric_limits<FloatType>::infinity() ? type(-sprout::numeric_limits<FloatType>::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<std::is_integral<IntType>::value>::type = sprout::enabler
>
inline SPROUT_CONSTEXPR sprout::pair<double, int>
float_sig_exp(IntType x) {
return sprout::math::float_sig_exp(static_cast<double>(x));
}
} // namespace math
2013-02-10 02:54:54 +00:00
using sprout::math::float_sig_exp;
} // namespace sprout
2013-02-10 02:54:54 +00:00
#endif // #ifndef SPROUT_MATH_FLOAT_SIG_EXP_HPP