/*============================================================================= 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_CEIL_HPP #define SPROUT_MATH_CEIL_HPP #include #include #include #include #include #include #include #include #include #include namespace sprout { namespace math { namespace detail { #if SPROUT_USE_BUILTIN_CMATH_FUNCTION inline SPROUT_CONSTEXPR float builtin_ceil(float x) { return __builtin_ceilf(x); } inline SPROUT_CONSTEXPR double builtin_ceil(double x) { return __builtin_ceil(x); } inline SPROUT_CONSTEXPR long double builtin_ceil(long double x) { return __builtin_ceill(x); } #endif template inline SPROUT_CONSTEXPR T ceil_impl_1(T x, T x0) { return sprout::math::equal_to(x, x0) ? x0 : x0 + T(1) ; } template inline SPROUT_CONSTEXPR T ceil_impl(T x) { return x < 0 ? -static_cast(static_cast(-x)) : sprout::math::detail::ceil_impl_1(x, static_cast(static_cast(x))) ; } } // namespace detail // // ceil // template< typename FloatType, typename sprout::enabler_if::value>::type = sprout::enabler > inline SPROUT_CONSTEXPR FloatType ceil(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 : sprout::math::detail::builtin_ceil(x) #else : x == 0 ? x : sprout::numeric_limits::max() < x || sprout::numeric_limits::max() < -x ? SPROUT_MATH_THROW_LARGE_FLOAT_ROUNDING(std::runtime_error("ceil: large float rounding."), x) : static_cast(sprout::math::detail::ceil_impl(static_cast::type>(x))) #endif ; } template< typename IntType, typename sprout::enabler_if::value>::type = sprout::enabler > inline SPROUT_CONSTEXPR double ceil(IntType x) { return sprout::math::ceil(static_cast(x)); } } // namespace math using sprout::math::ceil; } // namespace sprout #endif // #ifndef SPROUT_MATH_CEIL_HPP