Skip to content

Commit 980debf

Browse files
committed
Fix format
1 parent 49e403d commit 980debf

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

test/algorithms/Lexicographic.jl

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -199,13 +199,7 @@ function test_knapsack_time_limit()
199199
end
200200

201201
function test_knapsack_5_objectives()
202-
P = Float64[
203-
1 0 0 0;
204-
0 1 0 0;
205-
0 0 1 0;
206-
0 0 0 1;
207-
1 1 1 1;
208-
]
202+
P = Float64[1 0 0 0; 0 1 0 0; 0 0 1 0; 0 0 0 1; 1 1 1 1]
209203
model = MOA.Optimizer(HiGHS.Optimizer)
210204
MOI.set(model, MOA.Algorithm(), MOA.Lexicographic())
211205
MOI.set(model, MOI.Silent(), true)

0 commit comments

Comments
 (0)