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 b376511 commit d9dd235Copy full SHA for d9dd235
test/Test/runtests.jl
@@ -229,7 +229,7 @@ function test_HS071_evaluator()
229
@test MOI.constraint_expr(evaluator, 1) ==
230
:($(x[1]) * $(x[2]) * $(x[3]) * $(x[4]) >= 25.0)
231
@test MOI.constraint_expr(evaluator, 2) ==
232
- :($(x[1])^2 + $(x[2])^2 + $(x[3])^2 + $(x[4])^2 == 40.0)
+ :($(x[1])^2.0 + $(x[2])^2.0 + $(x[3])^2.0 + $(x[4])^2.0 == 40.0)
233
return
234
end
235
0 commit comments