From 980b434a16a17c7aefcec4b77e52fb7aebaa3c77 Mon Sep 17 00:00:00 2001 From: schillic Date: Fri, 1 Mar 2024 22:58:19 +0100 Subject: [PATCH] remove redundant statement --- src/operations/setops.jl | 1 - 1 file changed, 1 deletion(-) diff --git a/src/operations/setops.jl b/src/operations/setops.jl index 29e85ef7..afff5030 100644 --- a/src/operations/setops.jl +++ b/src/operations/setops.jl @@ -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)))"