Skip to content

Commit

Permalink
do not set multiplication mode in tests (redundant)
Browse files Browse the repository at this point in the history
  • Loading branch information
schillic committed Mar 1, 2024
1 parent 2367fa5 commit 7423369
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 7423369

Please sign in to comment.