2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
|
|
|
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)
|
|
|
|
=============================================================================*/
|
2012-07-04 23:03:32 +00:00
|
|
|
#ifndef SPROUT_MATH_LLROUND_HPP
|
|
|
|
#define SPROUT_MATH_LLROUND_HPP
|
|
|
|
|
|
|
|
#include <type_traits>
|
|
|
|
#include <sprout/config.hpp>
|
2013-08-06 15:15:09 +00:00
|
|
|
#include <sprout/limits.hpp>
|
2012-07-04 23:03:32 +00:00
|
|
|
#include <sprout/math/detail/config.hpp>
|
2013-05-06 14:57:38 +00:00
|
|
|
#include <sprout/math/isnan.hpp>
|
|
|
|
#include <sprout/math/isinf.hpp>
|
2013-02-10 02:54:54 +00:00
|
|
|
#include <sprout/math/iround.hpp>
|
2012-07-04 23:03:32 +00:00
|
|
|
#include <sprout/type_traits/enabler_if.hpp>
|
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace math {
|
|
|
|
namespace detail {
|
2013-10-25 03:29:16 +00:00
|
|
|
#if SPROUT_USE_BUILTIN_CMATH_FUNCTION
|
|
|
|
inline SPROUT_CONSTEXPR long long
|
|
|
|
builtin_llround(float x) {
|
|
|
|
return __builtin_llroundf(x);
|
|
|
|
}
|
2012-07-04 23:03:32 +00:00
|
|
|
inline SPROUT_CONSTEXPR long long
|
2013-10-25 03:29:16 +00:00
|
|
|
builtin_llround(double x) {
|
|
|
|
return __builtin_llround(x);
|
|
|
|
}
|
|
|
|
inline SPROUT_CONSTEXPR long long
|
|
|
|
builtin_llround(long double x) {
|
|
|
|
return __builtin_llroundl(x);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
} // namespace detail
|
|
|
|
//
|
|
|
|
// llround
|
|
|
|
//
|
|
|
|
template<
|
|
|
|
typename FloatType,
|
|
|
|
typename sprout::enabler_if<std::is_floating_point<FloatType>::value>::type = sprout::enabler
|
|
|
|
>
|
|
|
|
inline SPROUT_CONSTEXPR long long
|
|
|
|
llround(FloatType x) {
|
|
|
|
return sprout::math::isnan(x) || sprout::math::isinf(x) ? sprout::numeric_limits<long long>::min()
|
2013-05-06 14:57:38 +00:00
|
|
|
#if SPROUT_USE_BUILTIN_CMATH_FUNCTION
|
2013-10-25 03:29:16 +00:00
|
|
|
: sprout::math::detail::builtin_llround(x)
|
2013-05-06 14:57:38 +00:00
|
|
|
#else
|
2013-10-25 03:29:16 +00:00
|
|
|
: sprout::math::iround<long long>(x);
|
2013-05-06 14:57:38 +00:00
|
|
|
#endif
|
2013-10-25 03:29:16 +00:00
|
|
|
;
|
|
|
|
}
|
|
|
|
template<
|
|
|
|
typename IntType,
|
|
|
|
typename sprout::enabler_if<std::is_integral<IntType>::value>::type = sprout::enabler
|
|
|
|
>
|
|
|
|
inline SPROUT_CONSTEXPR long long
|
|
|
|
llround(IntType x) {
|
|
|
|
return
|
2013-05-06 14:57:38 +00:00
|
|
|
#if SPROUT_USE_BUILTIN_CMATH_FUNCTION
|
2013-10-25 03:29:16 +00:00
|
|
|
sprout::math::detail::builtin_llround(x)
|
2013-05-06 14:57:38 +00:00
|
|
|
#else
|
2013-10-25 03:29:16 +00:00
|
|
|
sprout::math::iround<long long>(x)
|
2013-05-06 14:57:38 +00:00
|
|
|
#endif
|
2013-10-25 03:29:16 +00:00
|
|
|
;
|
|
|
|
}
|
2012-07-04 23:03:32 +00:00
|
|
|
} // namespace math
|
|
|
|
|
|
|
|
using sprout::math::llround;
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_MATH_LLROUND_HPP
|