Skip to content

Commit

Permalink
fix changed names of meta fields
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 Aug 31, 2022
1 parent 559bd21 commit c7017f6
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 c7017f6

Please sign in to comment.