2012-07-04 15:09:44 +00:00
|
|
|
#ifndef SPROUT_MATH_ROUND_HPP
|
|
|
|
#define SPROUT_MATH_ROUND_HPP
|
|
|
|
|
|
|
|
#include <cstdint>
|
|
|
|
#include <limits>
|
|
|
|
#include <type_traits>
|
|
|
|
#include <stdexcept>
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/math/detail/config.hpp>
|
|
|
|
#include <sprout/type_traits/enabler_if.hpp>
|
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace math {
|
|
|
|
namespace detail {
|
|
|
|
template<typename FloatType>
|
|
|
|
inline SPROUT_CONSTEXPR FloatType
|
|
|
|
round_impl_positive(FloatType x, FloatType x0) {
|
2012-07-04 23:03:32 +00:00
|
|
|
return x - x0 < FloatType(0.5) ? x0
|
2012-07-04 15:09:44 +00:00
|
|
|
: x0 + 1
|
|
|
|
;
|
|
|
|
}
|
|
|
|
template<typename FloatType>
|
|
|
|
inline SPROUT_CONSTEXPR FloatType
|
|
|
|
round_impl_nagative(FloatType x, FloatType x0) {
|
2012-07-04 23:03:32 +00:00
|
|
|
return x0 - x < FloatType(0.5) ? x0
|
2012-07-04 15:09:44 +00:00
|
|
|
: x0 - 1
|
|
|
|
;
|
|
|
|
}
|
|
|
|
template<
|
|
|
|
typename FloatType,
|
|
|
|
typename sprout::enabler_if<std::is_floating_point<FloatType>::value>::type = sprout::enabler
|
|
|
|
>
|
|
|
|
inline SPROUT_CONSTEXPR FloatType
|
|
|
|
round(FloatType x) {
|
2013-02-14 09:02:43 +00:00
|
|
|
return x == 0 ? FloatType(0)
|
|
|
|
: x == std::numeric_limits<FloatType>::infinity() ? std::numeric_limits<FloatType>::infinity()
|
|
|
|
: x == -std::numeric_limits<FloatType>::infinity() ? -std::numeric_limits<FloatType>::infinity()
|
2012-07-04 23:03:32 +00:00
|
|
|
: std::numeric_limits<std::uintmax_t>::max() < x || std::numeric_limits<std::uintmax_t>::max() < -x
|
2013-03-18 10:12:21 +00:00
|
|
|
? SPROUT_MATH_THROW_LARGE_FLOAT_ROUNDING(std::runtime_error("round: large float rounding."), x)
|
2012-07-04 23:03:32 +00:00
|
|
|
: x < 0 ? sprout::math::detail::round_impl_nagative(x, -static_cast<FloatType>(static_cast<std::uintmax_t>(-x)))
|
|
|
|
: sprout::math::detail::round_impl_positive(x, static_cast<FloatType>(static_cast<std::uintmax_t>(x)))
|
2012-07-04 15:09:44 +00:00
|
|
|
;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<
|
|
|
|
typename IntType,
|
|
|
|
typename sprout::enabler_if<std::is_integral<IntType>::value>::type = sprout::enabler
|
|
|
|
>
|
|
|
|
inline SPROUT_CONSTEXPR double
|
|
|
|
round(IntType x) {
|
|
|
|
return sprout::math::detail::round(static_cast<double>(x));
|
|
|
|
}
|
2012-11-12 08:11:48 +00:00
|
|
|
} // namespace detail
|
2012-07-04 15:09:44 +00:00
|
|
|
|
|
|
|
using NS_SPROUT_MATH_DETAIL::round;
|
|
|
|
} // namespace math
|
|
|
|
|
|
|
|
using sprout::math::round;
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_MATH_ROUND_HPP
|