Skip to content

Commit 247364c

Browse files
authored
Fix bug in bounds selection (#137)
1 parent 0ec0eed commit 247364c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/selection.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ function select_optimizers(
8686
end
8787
if has_bounds(nlp)
8888
(verbose 1) && println("- bounds: ✓;")
89-
select = select[select.inequalities, :]
89+
select = select[select.bounds, :]
9090
end
9191
if !linearly_constrained(nlp)
9292
(verbose 1) && println("- nonlinear constraints: ✓;")

0 commit comments

Comments
 (0)