Sprout/sprout/math/floor.hpp

69 lines
2.2 KiB
C++
Raw Normal View History

2012-07-04 15:09:44 +00:00
#ifndef SPROUT_MATH_FLOOR_HPP
#define SPROUT_MATH_FLOOR_HPP
#include <cstdint>
#include <limits>
#include <type_traits>
#include <stdexcept>
#include <sprout/config.hpp>
#include <sprout/math/detail/config.hpp>
2013-05-06 14:57:38 +00:00
#include <sprout/math/detail/float_compute.hpp>
#include <sprout/math/isnan.hpp>
2012-07-06 14:10:49 +00:00
#include <sprout/math/equal_to.hpp>
2012-07-04 15:09:44 +00:00
#include <sprout/type_traits/enabler_if.hpp>
namespace sprout {
namespace math {
namespace detail {
2013-05-06 14:57:38 +00:00
template<typename T>
inline SPROUT_CONSTEXPR T
floor_impl_1(T x, T x0) {
2012-07-06 14:10:49 +00:00
return sprout::math::equal_to(x, x0) ? x0
2013-05-06 14:57:38 +00:00
: x0 - T(1)
;
}
template<typename T>
inline SPROUT_CONSTEXPR T
floor_impl(T x) {
return x < 0 ? sprout::math::detail::floor_impl_1(x, -static_cast<T>(static_cast<std::uintmax_t>(-x)))
: static_cast<T>(static_cast<std::uintmax_t>(x))
2012-07-04 15:09:44 +00:00
;
}
2013-05-06 14:57:38 +00:00
2012-07-04 15:09:44 +00:00
template<
typename FloatType,
typename sprout::enabler_if<std::is_floating_point<FloatType>::value>::type = sprout::enabler
>
inline SPROUT_CONSTEXPR FloatType
floor(FloatType x) {
2013-05-06 14:57:38 +00:00
return sprout::math::isnan(x) ? x
2013-02-14 09:02:43 +00:00
: x == std::numeric_limits<FloatType>::infinity() ? std::numeric_limits<FloatType>::infinity()
: x == -std::numeric_limits<FloatType>::infinity() ? -std::numeric_limits<FloatType>::infinity()
2013-05-06 14:57:38 +00:00
#if SPROUT_USE_BUILTIN_CMATH_FUNCTION
: std::floor(x)
#else
: x == 0 ? x
2012-07-04 23:03:32 +00:00
: std::numeric_limits<std::uintmax_t>::max() < x || std::numeric_limits<std::uintmax_t>::max() < -x
2013-03-18 10:12:21 +00:00
? SPROUT_MATH_THROW_LARGE_FLOAT_ROUNDING(std::runtime_error("floor: large float rounding."), x)
2013-05-06 14:57:38 +00:00
: static_cast<FloatType>(sprout::math::detail::floor_impl(static_cast<typename sprout::math::detail::float_compute<FloatType>::type>(x)))
#endif
2012-07-04 15:09:44 +00:00
;
}
template<
typename IntType,
typename sprout::enabler_if<std::is_integral<IntType>::value>::type = sprout::enabler
>
inline SPROUT_CONSTEXPR double
floor(IntType x) {
return sprout::math::detail::floor(static_cast<double>(x));
}
} // namespace detail
2012-07-04 15:09:44 +00:00
2013-05-06 14:57:38 +00:00
using sprout::math::detail::floor;
2012-07-04 15:09:44 +00:00
} // namespace math
using sprout::math::floor;
} // namespace sprout
#endif // #ifndef SPROUT_MATH_FLOOR_HPP