mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-12 14:54:10 +00:00
fix exponential functions
This commit is contained in:
parent
32c3ba02d4
commit
dad3acceea
41 changed files with 180 additions and 354 deletions
|
@ -20,9 +20,9 @@ namespace sprout {
|
|||
>
|
||||
inline SPROUT_CONSTEXPR int
|
||||
fpclassify(FloatType x) {
|
||||
return sprout::isnan(x) ? FP_NAN
|
||||
: sprout::isinf(x) ? FP_INFINITE
|
||||
: sprout::iszero(x) ? FP_ZERO
|
||||
return sprout::math::isnan(x) ? FP_NAN
|
||||
: sprout::math::isinf(x) ? FP_INFINITE
|
||||
: sprout::math::iszero(x) ? FP_ZERO
|
||||
: sprout::math::detail::issubnormal_or_zero(x) ? FP_SUBNORMAL
|
||||
: FP_NORMAL
|
||||
;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue