Skip to content

Commit 631171e

Browse files
tests pass!
1 parent da88ef0 commit 631171e

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/solve.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,6 @@ function __init__()
336336

337337
_loss = function(θ)
338338
x = prob.f.f(θ, prob.p)
339-
@show θ,x
340339
return x[1]
341340
end
342341

test/rosenbrock.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ sol = solve(prob, IPNewton())
4747
@test 10*sol.minimum < l1
4848

4949
prob = OptimizationProblem(optprob, x0, lcons = [-Inf], ucons = [Inf], lb = [-500.0,-500.0], ub=[-50.0,-50.0])
50-
@test_broken @test_nowarn sol = solve(prob, IPNewton())
50+
sol = solve(prob, IPNewton())
5151
@test sol.minimum < l1
5252

5353
function con2_c(x,p)

0 commit comments

Comments
 (0)