Skip to content

Commit

Permalink
fix changed names of meta fields (#216)
Browse files Browse the repository at this point in the history
It appears as if
1. The names have changed to `x0, y0`
2. The getters have been introduced JuliaSmoothOptimizers/NLPModels.jl#371
  • Loading branch information
baggepinnen authored Sep 1, 2022
1 parent 91ca7c5 commit ff28e44
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/IPM/solver.jl
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ function solve!(
model::AbstractNLPModel,
solver::MadNLPSolver,
nlp::AbstractNLPModel;
x = nlp.meta.x,
y = nlp.meta.y,
x = get_x0(nlp),
y = get_y0(nlp),
zl= nothing,
zu= nothing,
kwargs...)
Expand Down

0 comments on commit ff28e44

Please sign in to comment.