/*============================================================================= Copyright (c) 2011-2013 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 #include #include #include #include #include #include #include #include namespace sprout { namespace math { namespace detail { template inline SPROUT_CONSTEXPR T round_impl_positive(T x, T x0) { return x - x0 < T(0.5) ? x0 : x0 + T(1) ; } template inline SPROUT_CONSTEXPR T round_impl_nagative(T x, T x0) { return x0 - x < T(0.5) ? x0 : x0 - T(1) ; } template inline SPROUT_CONSTEXPR T round_impl(T x) { return x < 0 ? sprout::math::detail::round_impl_nagative(x, -static_cast(static_cast(-x))) : sprout::math::detail::round_impl_positive(x, static_cast(static_cast(x))) ; } template< typename FloatType, typename sprout::enabler_if::value>::type = sprout::enabler > inline SPROUT_CONSTEXPR FloatType round(FloatType x) { return sprout::math::isnan(x) ? x : x == sprout::numeric_limits::infinity() ? sprout::numeric_limits::infinity() : x == -sprout::numeric_limits::infinity() ? -sprout::numeric_limits::infinity() #if SPROUT_USE_BUILTIN_CMATH_FUNCTION : std::round(x) #else : x == 0 ? x : sprout::numeric_limits::max() < x || sprout::numeric_limits::max() < -x ? SPROUT_MATH_THROW_LARGE_FLOAT_ROUNDING(std::runtime_error("round: large float rounding."), x) : static_cast(sprout::math::detail::round_impl(static_cast::type>(x))) #endif ; } template< typename IntType, typename sprout::enabler_if::value>::type = sprout::enabler > inline SPROUT_CONSTEXPR double round(IntType x) { return sprout::math::detail::round(static_cast(x)); } } // namespace detail using sprout::math::detail::round; } // namespace math using sprout::math::round; } // namespace sprout #endif // #ifndef SPROUT_MATH_ROUND_HPP