Sprout/sprout/math/round.hpp
2014-01-08 16:48:12 +09:00

96 lines
3.1 KiB
C++

/*=============================================================================
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_ROUND_HPP
#define SPROUT_MATH_ROUND_HPP
#include <cstdint>
#include <type_traits>
#include <stdexcept>
#include <sprout/config.hpp>
#include <sprout/limits.hpp>
#include <sprout/math/detail/config.hpp>
#include <sprout/math/detail/float_compute.hpp>
#include <sprout/math/isnan.hpp>
#include <sprout/type_traits/enabler_if.hpp>
namespace sprout {
namespace math {
namespace detail {
#if SPROUT_USE_BUILTIN_CMATH_FUNCTION
inline SPROUT_CONSTEXPR float
builtin_round(float x) {
return __builtin_roundf(x);
}
inline SPROUT_CONSTEXPR double
builtin_round(double x) {
return __builtin_round(x);
}
inline SPROUT_CONSTEXPR long double
builtin_round(long double x) {
return __builtin_roundl(x);
}
#endif
template<typename T>
inline SPROUT_CONSTEXPR T
round_impl_positive(T x, T x0) {
return x - x0 < T(0.5) ? x0
: x0 + T(1)
;
}
template<typename T>
inline SPROUT_CONSTEXPR T
round_impl_nagative(T x, T x0) {
return x0 - x < T(0.5) ? x0
: x0 - T(1)
;
}
template<typename T>
inline SPROUT_CONSTEXPR T
round_impl(T x) {
return x < 0 ? sprout::math::detail::round_impl_nagative(x, -static_cast<T>(static_cast<std::uintmax_t>(-x)))
: sprout::math::detail::round_impl_positive(x, static_cast<T>(static_cast<std::uintmax_t>(x)))
;
}
} // namespace detail
//
// round
//
template<
typename FloatType,
typename sprout::enabler_if<std::is_floating_point<FloatType>::value>::type = sprout::enabler
>
inline SPROUT_CONSTEXPR FloatType
round(FloatType x) {
return sprout::math::isnan(x) ? x
: x == sprout::numeric_limits<FloatType>::infinity() ? sprout::numeric_limits<FloatType>::infinity()
: x == -sprout::numeric_limits<FloatType>::infinity() ? -sprout::numeric_limits<FloatType>::infinity()
#if SPROUT_USE_BUILTIN_CMATH_FUNCTION
: sprout::math::detail::builtin_round(x)
#else
: x == 0 ? x
: sprout::numeric_limits<std::uintmax_t>::max() < x || sprout::numeric_limits<std::uintmax_t>::max() < -x
? SPROUT_MATH_THROW_LARGE_FLOAT_ROUNDING(std::runtime_error("round: large float rounding."), x)
: static_cast<FloatType>(sprout::math::detail::round_impl(static_cast<typename sprout::math::detail::float_compute<FloatType>::type>(x)))
#endif
;
}
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::round(static_cast<double>(x));
}
} // namespace math
using sprout::math::round;
} // namespace sprout
#endif // #ifndef SPROUT_MATH_ROUND_HPP