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 6d4edba commit bea3914Copy full SHA for bea3914
test/optimizationsystem.jl
@@ -109,11 +109,9 @@ end
109
x0 = zeros(2)
110
p = [1.0, 100.0]
111
f = OptimizationFunction(rosenbrock, Optimization.AutoSymbolics())
112
- @test_broken begin
113
- prob = OptimizationProblem(f, x0, p)
114
- sol = solve(prob, Newton())
115
- @test sol.u ≈ [1.0, 1.0]
116
- end
+ prob = OptimizationProblem(f, x0, p)
+ sol = solve(prob, Newton())
+ @test sol.u ≈ [1.0, 1.0]
117
end
118
119
# issue #819
0 commit comments