mirror of
https://github.com/bolero-MURAKAMI/Sprout
synced 2025-08-03 12:49:50 +00:00
fix: math functions (support for inferior C++14 standard)
add C++14 constexpr modifying algorithms
This commit is contained in:
parent
58cff54e0d
commit
c58c9cc0fc
106 changed files with 3465 additions and 2144 deletions
|
@ -20,37 +20,57 @@
|
|||
namespace sprout {
|
||||
namespace math {
|
||||
namespace detail {
|
||||
#if SPROUT_USE_BUILTIN_CMATH_FUNCTION
|
||||
inline SPROUT_CONSTEXPR float
|
||||
builtin_scalbln(float x, long exp) {
|
||||
return __builtin_scalblnf(x, exp);
|
||||
}
|
||||
inline SPROUT_CONSTEXPR double
|
||||
builtin_scalbln(double x, long exp) {
|
||||
return __builtin_scalbln(x, exp);
|
||||
}
|
||||
inline SPROUT_CONSTEXPR long double
|
||||
builtin_scalbln(long double x, long exp) {
|
||||
return __builtin_scalblnl(x, exp);
|
||||
}
|
||||
#endif
|
||||
|
||||
template<typename FloatType, typename T>
|
||||
inline SPROUT_CONSTEXPR T
|
||||
scalbln_impl(T x, long exp) {
|
||||
return x * sprout::detail::pow_n(T(sprout::numeric_limits<FloatType>::radix), exp);
|
||||
}
|
||||
|
||||
template<
|
||||
typename FloatType,
|
||||
typename sprout::enabler_if<std::is_floating_point<FloatType>::value>::type = sprout::enabler
|
||||
>
|
||||
inline SPROUT_CONSTEXPR FloatType
|
||||
scalbln(FloatType x, long exp) {
|
||||
return sprout::math::isnan(x) ? x
|
||||
: x == sprout::numeric_limits<FloatType>::infinity() ? sprout::numeric_limits<FloatType>::infinity()
|
||||
: x == -sprout::numeric_limits<FloatType>::infinity() ? -sprout::numeric_limits<FloatType>::infinity()
|
||||
: exp == 0 ? x
|
||||
: x == 0 ? x
|
||||
: static_cast<FloatType>(sprout::math::detail::scalbln_impl<FloatType>(static_cast<typename sprout::math::detail::float_compute<FloatType>::type>(x), exp))
|
||||
;
|
||||
}
|
||||
template<
|
||||
typename IntType,
|
||||
typename sprout::enabler_if<std::is_integral<IntType>::value>::type = sprout::enabler
|
||||
>
|
||||
inline SPROUT_CONSTEXPR double
|
||||
scalbln(IntType x, long exp) {
|
||||
return sprout::math::detail::scalbln(static_cast<double>(x), exp);
|
||||
}
|
||||
} // namespace detail
|
||||
|
||||
using NS_SPROUT_MATH_DETAIL::scalbln;
|
||||
//
|
||||
// scalbln
|
||||
//
|
||||
template<
|
||||
typename FloatType,
|
||||
typename sprout::enabler_if<std::is_floating_point<FloatType>::value>::type = sprout::enabler
|
||||
>
|
||||
inline SPROUT_CONSTEXPR FloatType
|
||||
scalbln(FloatType x, long exp) {
|
||||
return
|
||||
#if SPROUT_USE_BUILTIN_CMATH_FUNCTION
|
||||
sprout::math::detail::builtin_scalbln(x, exp)
|
||||
#else
|
||||
sprout::math::isnan(x) ? x
|
||||
: x == sprout::numeric_limits<FloatType>::infinity() ? sprout::numeric_limits<FloatType>::infinity()
|
||||
: x == -sprout::numeric_limits<FloatType>::infinity() ? -sprout::numeric_limits<FloatType>::infinity()
|
||||
: exp == 0 ? x
|
||||
: x == 0 ? x
|
||||
: static_cast<FloatType>(sprout::math::detail::scalbln_impl<FloatType>(static_cast<typename sprout::math::detail::float_compute<FloatType>::type>(x), exp))
|
||||
#endif
|
||||
;
|
||||
}
|
||||
template<
|
||||
typename IntType,
|
||||
typename sprout::enabler_if<std::is_integral<IntType>::value>::type = sprout::enabler
|
||||
>
|
||||
inline SPROUT_CONSTEXPR double
|
||||
scalbln(IntType x, long exp) {
|
||||
return sprout::math::scalbln(static_cast<double>(x), exp);
|
||||
}
|
||||
} // namespace math
|
||||
|
||||
using sprout::math::scalbln;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue