2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
2014-01-08 07:48:12 +00:00
|
|
|
Copyright (c) 2011-2014 Bolero MURAKAMI
|
2013-08-08 09:54:33 +00:00
|
|
|
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_LROUND_HPP
|
|
|
|
#define SPROUT_MATH_LROUND_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
|
|
|
|
builtin_lround(float x) {
|
|
|
|
return __builtin_lroundf(x);
|
|
|
|
}
|
2012-07-04 23:03:32 +00:00
|
|
|
inline SPROUT_CONSTEXPR long
|
2013-10-25 03:29:16 +00:00
|
|
|
builtin_lround(double x) {
|
|
|
|
return __builtin_lround(x);
|
|
|
|
}
|
|
|
|
inline SPROUT_CONSTEXPR long
|
|
|
|
builtin_lround(long double x) {
|
|
|
|
return __builtin_lroundl(x);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
} // namespace detail
|
|
|
|
//
|
|
|
|
// lround
|
|
|
|
//
|
|
|
|
template<
|
|
|
|
typename FloatType,
|
|
|
|
typename sprout::enabler_if<std::is_floating_point<FloatType>::value>::type = sprout::enabler
|
|
|
|
>
|
|
|
|
inline SPROUT_CONSTEXPR long
|
|
|
|
lround(FloatType x) {
|
|
|
|
return sprout::math::isnan(x) || sprout::math::isinf(x) ? sprout::numeric_limits<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_lround(x)
|
2013-05-06 14:57:38 +00:00
|
|
|
#else
|
2013-10-25 03:29:16 +00:00
|
|
|
: sprout::math::iround<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
|
|
|
|
lround(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_lround(x)
|
2013-05-06 14:57:38 +00:00
|
|
|
#else
|
2013-10-25 03:29:16 +00:00
|
|
|
sprout::math::iround<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::lround;
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_MATH_LROUND_HPP
|