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
This is a corner case, where we should probably on the behavior.
We have several ways to access the constraints function: cons!/cons, cons_nln and cons_lin, and objcons. How should these behave when applied on an unconstrained problems? I see 3 options:
Business as usual: evaluate cons (hoping it doesn't break in case the NLPModel has not implemented this function - but that's a normal error in this case), and increase counters.
Increase counters (because the user called the function), but try to skip the evaluation.
If a solver tries to solve an unconstrained problem and, in doing so, evaluates the constraints, there is a serious issue with that solver. We should not encourage that kind of behavior. I think cons!() should return an error in that case.
For objcons, the solution I see is easy: we should have objcons <=> obj for unconstrained problems.
I agree with the first point, let's add a new error for unconstrained problem when we call the constraints, and error for linear and nonlinear constraints too.
I have a more mixed opinion on the objcons. Shouldn't this return an error too? Because it is obj and cons, in my mind this function is just trying to optimize both call depening on the models but essentially it is "similar" to call both functions. What I am trying to say if that it feels misleading to call objcons and irgnoring cons.
If we keep the version ignoring cons, then we need to update the docstring that right now says:
This is a corner case, where we should probably on the behavior.
We have several ways to access the constraints function:
cons!/cons
,cons_nln
andcons_lin
, andobjcons
. How should these behave when applied on an unconstrained problems? I see 3 options:A related question is: How should objcons react to this situation?
Connected to JuliaSmoothOptimizers/NLPModelsTest.jl#26 and JuliaSmoothOptimizers/CUTEst.jl#327
The text was updated successfully, but these errors were encountered: