mirror of
https://github.com/bolero-MURAKAMI/Sprout
synced 2025-08-03 12:49:50 +00:00
fix math: rounding function,etc...
This commit is contained in:
parent
53b99b25f8
commit
434aa8d3c5
22 changed files with 812 additions and 74 deletions
75
sprout/math/ifloor.hpp
Normal file
75
sprout/math/ifloor.hpp
Normal file
|
@ -0,0 +1,75 @@
|
|||
#ifndef SPROUT_MATH_IFLOOR_HPP
|
||||
#define SPROUT_MATH_IFLOOR_HPP
|
||||
|
||||
#include <limits>
|
||||
#include <type_traits>
|
||||
#include <stdexcept>
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/math/detail/config.hpp>
|
||||
#include <sprout/type_traits/enabler_if.hpp>
|
||||
#if SPROUT_USE_BUILTIN_CMATH_FUNCTION
|
||||
# include <sprout/math/floor.hpp>
|
||||
#else
|
||||
# include <sprout/math/equal_to.hpp>
|
||||
#endif
|
||||
|
||||
namespace sprout {
|
||||
namespace math {
|
||||
namespace detail {
|
||||
#if SPROUT_USE_BUILTIN_CMATH_FUNCTION
|
||||
template<typename To, typename FloatType>
|
||||
inline SPROUT_CONSTEXPR To
|
||||
ifloor_impl(FloatType x) {
|
||||
return std::numeric_limits<To>::max() < x || std::numeric_limits<To>::min() > x
|
||||
? SPROUT_MATH_THROW_LARGE_FLOAT_ROUNDING(std::domain_error("ifloor: large float rounding."), static_cast<To>(x))
|
||||
: static_cast<To>(x)
|
||||
;
|
||||
}
|
||||
template<
|
||||
typename To = int,
|
||||
typename FloatType,
|
||||
typename sprout::enabler_if<std::is_floating_point<FloatType>::value && std::is_integral<To>::value>::type = sprout::enabler
|
||||
>
|
||||
inline SPROUT_CONSTEXPR To
|
||||
ifloor(FloatType x) {
|
||||
return sprout::math::detail::ifloor_impl<To>(sprout::math::floor(x));
|
||||
}
|
||||
#else
|
||||
template<typename To, typename FloatType>
|
||||
inline SPROUT_CONSTEXPR To
|
||||
ifloor_impl(FloatType x, To x0) {
|
||||
return sprout::math::equal_to(x, x0) ? x0
|
||||
: x0 - 1
|
||||
;
|
||||
}
|
||||
template<
|
||||
typename To = int,
|
||||
typename FloatType,
|
||||
typename sprout::enabler_if<std::is_floating_point<FloatType>::value && std::is_integral<To>::value>::type = sprout::enabler
|
||||
>
|
||||
inline SPROUT_CONSTEXPR To
|
||||
ifloor(FloatType x) {
|
||||
return std::numeric_limits<To>::max() < x || std::numeric_limits<To>::min() > x
|
||||
? SPROUT_MATH_THROW_LARGE_FLOAT_ROUNDING(std::domain_error("ifloor: large float rounding."), static_cast<To>(x))
|
||||
: sprout::math::detail::ifloor_impl(x, static_cast<To>(x))
|
||||
;
|
||||
}
|
||||
#endif
|
||||
template<
|
||||
typename To = int,
|
||||
typename IntType,
|
||||
typename sprout::enabler_if<std::is_integral<IntType>::value && std::is_integral<To>::value>::type = sprout::enabler
|
||||
>
|
||||
inline SPROUT_CONSTEXPR To
|
||||
ifloor(IntType x) {
|
||||
return sprout::math::detail::ifloor<To>(static_cast<double>(x));
|
||||
}
|
||||
} // namespace detail
|
||||
|
||||
using sprout::math::detail::ifloor;
|
||||
} // namespace math
|
||||
|
||||
using sprout::math::ifloor;
|
||||
} // namespace sprout
|
||||
|
||||
#endif // #ifndef SPROUT_MATH_IFLOOR_HPP
|
Loading…
Add table
Add a link
Reference in a new issue