Skip to content

Commit

Permalink
Bound 001_010.jl for unique global solution (#53)
Browse files Browse the repository at this point in the history
* Bound 001_010.jl for unique global solution

* Update src/nlp-expr/001_010.jl
  • Loading branch information
odow authored Nov 14, 2024
1 parent c562df9 commit e34777b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nlp-expr/001_010.jl
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ function nlp_expr_001_010(
model = Model(optimizer)

@variable(model, x, start = 1)
@variable(model, y, start = 2.12)
@variable(model, -pi / 2 <= y <= 5 * pi / 2, start = 2.12)
@variable(model, z >= 1)

@objective(model, Min, x * exp(x) + cos(y) + z^3 - z^2)
Expand Down

0 comments on commit e34777b

Please sign in to comment.