Skip to content

Commit fb2443b

Browse files
authored
Merge pull request #4080 from JuliaReach/auto-juliaformatter-pr
Automatic JuliaFormatter.jl run
2 parents a89b1ce + b741f62 commit fb2443b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/Approximations/overapproximate.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -218,15 +218,15 @@ for N in @tN([Float64, Float32, Rational{Int}])
218218
B = MatrixZonotope(N[2 0; 1 -1], [N[0 1; 1 -1]])
219219
res = overapproximate(A * B, MatrixZonotope)
220220

221-
ex_res = MatrixZonotope(N[3 -1; -1 -1], [N[0 1; 2 -1], N[2 0;4 -2], N[1 0; 1 -2]])
221+
ex_res = MatrixZonotope(N[3 -1; -1 -1], [N[0 1; 2 -1], N[2 0; 4 -2], N[1 0; 1 -2]])
222222
@static if isdefined(@__MODULE__, :Polyhedra)
223223
@test isequivalent(vectorize(res), vectorize(ex_res))
224224
end
225225

226226
C = MatrixZonotope(N[1 0; 0 -1], [N[0 0; 1 0]])
227227
res2 = overapproximate(A * B * C, MatrixZonotope)
228228
@test res2 isa MatrixZonotope
229-
229+
230230
#empty generator
231231
D = MatrixZonotope(N[1 0; 0 -1], Matrix{N}[])
232232
res3 = overapproximate(A * D, MatrixZonotope)

0 commit comments

Comments
 (0)