We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49e403d commit 980debfCopy full SHA for 980debf
1 file changed
test/algorithms/Lexicographic.jl
@@ -199,13 +199,7 @@ function test_knapsack_time_limit()
199
end
200
201
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
- ]
+ P = Float64[1 0 0 0; 0 1 0 0; 0 0 1 0; 0 0 0 1; 1 1 1 1]
209
model = MOA.Optimizer(HiGHS.Optimizer)
210
MOI.set(model, MOA.Algorithm(), MOA.Lexicographic())
211
MOI.set(model, MOI.Silent(), true)
0 commit comments