Skip to content

Commit

Permalink
remove redundant statement
Browse files Browse the repository at this point in the history
  • Loading branch information
schillic committed Mar 1, 2024
1 parent 2367fa5 commit 980b434
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/operations/setops.jl
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ A new matrix `C` of the same shape as `A` such that
`C[i, j] = A[i, j] ∩ B[i, j]` for each `i` and `j`.
"""
function (A::IntervalMatrix, B::IntervalMatrix)
m, n = size(A)
@assert size(A) == size(B) "incompatible matrix sizes (A: $(size(A)), B: " *
"$(size(B)))"

Expand Down

0 comments on commit 980b434

Please sign in to comment.