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 85b856d commit dd58650Copy full SHA for dd58650
test/optimizationsystem.jl
@@ -84,12 +84,10 @@ end
84
@test sol.minimum < 1.0
85
@test sol.u≈[0.808, 0.589] atol=1e-3
86
@test sol[x]^2 + sol[y]^2 ≈ 1.0
87
- @test_skip begin # MethodError: no method matching MathOptInterface.FileFormats.NL._NLExpr(::Int64)
88
- sol = solve(prob, AmplNLWriter.Optimizer(Ipopt_jll.amplexe))
89
- @test sol.minimum < 1.0
90
- @test sol.u≈[0.808, 0.589] atol=1e-3
91
- @test sol[x]^2 + sol[y]^2 ≈ 1.0
92
- end
+ sol = solve(prob, AmplNLWriter.Optimizer(Ipopt_jll.amplexe))
+ @test sol.minimum < 1.0
+ @test sol.u≈[0.808, 0.589] atol=1e-3
+ @test sol[x]^2 + sol[y]^2 ≈ 1.0
93
end
94
95
@testset "rosenbrock" begin
0 commit comments