Skip to content

Commit

Permalink
Merge pull request #231 from JuliaReach/schillic/warnings
Browse files Browse the repository at this point in the history
Do not set multiplication mode in tests (redundant)
  • Loading branch information
schillic authored Mar 1, 2024
2 parents 66afaa3 + 7423369 commit 9356e6b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/arithmetic.jl
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@ end
@test get_multiplication_mode() == Dict(:multiplication => :slow)

A = IntervalMatrix([interval(2, 4) interval(-2, 1); interval(-1, 2) interval(2, 4)])
set_multiplication_mode(:slow)

# set_multiplication_mode(:slow) # not needed because it is the default
@test A * A ==
IntervalMatrix([interval(0, 18) interval(-16, 8); interval(-8, 16) interval(0, 18)])
@test A * mid.(A) ==
Expand Down

0 comments on commit 9356e6b

Please sign in to comment.