2013-02-06 18:11:17 +00:00
|
|
|
#ifndef SPROUT_MATH_SCALBLN_HPP
|
|
|
|
#define SPROUT_MATH_SCALBLN_HPP
|
|
|
|
|
|
|
|
#include <type_traits>
|
|
|
|
#include <sprout/config.hpp>
|
2013-08-06 15:15:09 +00:00
|
|
|
#include <sprout/limits.hpp>
|
2013-05-04 15:06:30 +00:00
|
|
|
#include <sprout/detail/pow.hpp>
|
2013-02-06 18:11:17 +00:00
|
|
|
#include <sprout/math/detail/config.hpp>
|
2013-04-25 06:36:19 +00:00
|
|
|
#include <sprout/math/detail/float_compute.hpp>
|
2013-05-04 15:06:30 +00:00
|
|
|
#include <sprout/math/isnan.hpp>
|
2013-02-06 18:11:17 +00:00
|
|
|
#include <sprout/type_traits/enabler_if.hpp>
|
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace math {
|
|
|
|
namespace detail {
|
2013-04-25 06:36:19 +00:00
|
|
|
template<typename FloatType, typename T>
|
|
|
|
inline SPROUT_CONSTEXPR T
|
|
|
|
scalbln_impl(T x, long exp) {
|
2013-08-06 15:15:09 +00:00
|
|
|
return x * sprout::detail::pow_n(T(sprout::numeric_limits<FloatType>::radix), exp);
|
2013-04-25 06:36:19 +00:00
|
|
|
}
|
|
|
|
|
2013-02-06 18:11:17 +00:00
|
|
|
template<
|
|
|
|
typename FloatType,
|
|
|
|
typename sprout::enabler_if<std::is_floating_point<FloatType>::value>::type = sprout::enabler
|
|
|
|
>
|
|
|
|
inline SPROUT_CONSTEXPR FloatType
|
|
|
|
scalbln(FloatType x, long exp) {
|
2013-05-04 15:06:30 +00:00
|
|
|
return sprout::math::isnan(x) ? x
|
2013-08-06 15:15:09 +00:00
|
|
|
: x == sprout::numeric_limits<FloatType>::infinity() ? sprout::numeric_limits<FloatType>::infinity()
|
|
|
|
: x == -sprout::numeric_limits<FloatType>::infinity() ? -sprout::numeric_limits<FloatType>::infinity()
|
2013-02-14 09:02:43 +00:00
|
|
|
: exp == 0 ? x
|
2013-04-25 15:25:35 +00:00
|
|
|
: x == 0 ? x
|
2013-04-25 06:36:19 +00:00
|
|
|
: static_cast<FloatType>(sprout::math::detail::scalbln_impl<FloatType>(static_cast<typename sprout::math::detail::float_compute<FloatType>::type>(x), exp))
|
2013-02-14 09:02:43 +00:00
|
|
|
;
|
2013-02-06 18:11:17 +00:00
|
|
|
}
|
|
|
|
template<
|
|
|
|
typename IntType,
|
|
|
|
typename sprout::enabler_if<std::is_integral<IntType>::value>::type = sprout::enabler
|
|
|
|
>
|
|
|
|
inline SPROUT_CONSTEXPR double
|
|
|
|
scalbln(IntType x, long exp) {
|
|
|
|
return sprout::math::detail::scalbln(static_cast<double>(x), exp);
|
|
|
|
}
|
|
|
|
} // namespace detail
|
|
|
|
|
|
|
|
using NS_SPROUT_MATH_DETAIL::scalbln;
|
|
|
|
} // namespace math
|
|
|
|
|
|
|
|
using sprout::math::scalbln;
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_MATH_SCALBLN_HPP
|