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 c0a0a56 commit e8df858Copy full SHA for e8df858
test/algorithms/DominguezRios.jl
@@ -171,7 +171,7 @@ function test_lp()
171
],
172
fill(0.0, 2),
173
)
174
- MOI.add_constraint(model, 3x1 - x2, MOI.LessThan(6.0))
+ MOI.add_constraint(model, 3.0 * x1 - x2, MOI.LessThan(6.0))
175
MOI.set(model, MOA.Algorithm(), MOA.DominguezRios())
176
MOI.optimize!(model)
177
@test MOI.get(model, MOI.TerminationStatus()) == MOI.OPTIMAL
0 commit comments