Closed mtanneau closed 3 years ago
There seems to be something wrong with how Inf is treated when higher precision is used:
Inf
julia> Float64x1(-Inf) - 1 -Inf julia> Float64x2(-Inf) - 1 # Same happens for Float64x3, etc NaN
and
julia> Float64x1(Inf) + 1 Inf julia> Float64x2(Inf) + 1 # Same happens for Float64x3, etc NaN
Hey @mtanneau , the remarks from the comment I left on your other issue also apply here. Adding the link for reference.
There seems to be something wrong with how
Inf
is treated when higher precision is used:and