We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 297b9f5 commit b5a14c3Copy full SHA for b5a14c3
test/algorithms/DominguezRios.jl
@@ -36,6 +36,8 @@ function test_knapsack_min_p3()
36
]
37
w = Float64[557, 898, 148, 63, 78, 964, 246, 662, 386, 272]
38
model = MOA.Optimizer(HiGHS.Optimizer)
39
+ # TODO(odow): work-around a bug in HiGHS v1.11.0
40
+ MOI.set(model, MOI.RawOptimizerAttribute("presolve"), "off")
41
MOI.set(model, MOA.Algorithm(), MOA.DominguezRios())
42
MOI.set(model, MOI.Silent(), true)
43
x = MOI.add_variables(model, n)
@@ -97,6 +99,8 @@ function test_knapsack_max_p3()
97
99
98
100
101
102
103
104
105
106
0 commit comments