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
julia> A =hcat(interval(1, 2))
1×1 Matrix{Interval{Float64}}:
[1.0, 2.0]_com
julia> B =hcat(1)
1×1 Matrix{Int64}:1
julia> A * B
┌ Warning: invalid interval, NaI is returned
└ @ IntervalArithmetic ~/.julia/packages/IntervalArithmetic/GSwKs/src/intervals/construction.jl:462
┌ Warning: interval part of NaI
└ @ IntervalArithmetic ~/.julia/packages/IntervalArithmetic/GSwKs/src/intervals/construction.jl:300
┌ Warning: interval part of NaI
└ @ IntervalArithmetic ~/.julia/packages/IntervalArithmetic/GSwKs/src/intervals/construction.jl:3001×1 Matrix{Interval{Float64}}:
∅_ill_NG
The text was updated successfully, but these errors were encountered:
Thanks for reporting this issue. This is not intended, similar(::Array, ::Interval, ...) does not use our methods (A* interval(B) works fine).
Can you check that on the "master branch" everything works out for you?
Is this intended (v0.22.21)?
The text was updated successfully, but these errors were encountered: