You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Any chance to get the duals from the general non-linear solver Ipopt for a non-linear problem defined purely in JuMP? I am currently using Ipopt as a general nonlinear solver (i.e., with @addNLConstraint and @addConstraint). I have upper and lower limits on variables and quadratic / linear
equality/inequality constraints. Non-linear or linear objective function.
The text was updated successfully, but these errors were encountered:
@rbacher, this is now implemented. You may use Pkg.checkout("JuMP") to pull the latest development version of JuMP to test it out. See the example code here. The only caveat is that we don't yet support duals on quadratic constraints added through @addConstraint, so you can add these with @addNLConstraint for the time being.
Any chance to get the duals from the general non-linear solver Ipopt for a non-linear problem defined purely in JuMP? I am currently using Ipopt as a general nonlinear solver (i.e., with @addNLConstraint and @addConstraint). I have upper and lower limits on variables and quadratic / linear
equality/inequality constraints. Non-linear or linear objective function.
The text was updated successfully, but these errors were encountered: