You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in the comparison below, i expected m ≈ interval(0.295, 0.395) to hold.
julia> m
[0.294999, 0.395001]
julia> m.lo ≈0.295true
julia> m.hi ≈0.395true
julia> m ≈interval(0.295, 0.395)
false
julia>@which m ≈interval(0.295, 0.395)
isapprox(x::Number, y::Number; atol, rtol, nans, norm) in Base at floatfuncs.jl:278
in the comparison below, i expected
m ≈ interval(0.295, 0.395)
to hold.see also https://github.com/lucaferranti/IntervalLinearAlgebra.jl/blob/main/src/utils.jl#L1
The text was updated successfully, but these errors were encountered: