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
Trying to use the setvarLB!, setvarUB!getvarLB, getvarUB functions in a callback but couldn't find a definition in the docs nor in MathProgBase source code.
What's the signature, should these be called with the callback object? Do they get updated in the current node of the branch and bound?
The text was updated successfully, but these errors were encountered:
Remember that solver-independent callbacks will no longer be supported in MOI. Instead, you should use the solver specific functionality - precisely because the specifics of which functions are available and when are not solver specific.
From MPB, solver is CPLEX. Yes I'm checking the solver documentation for this. Thing is, I was wondering how to call it and was looking at the interface for that but it's not going to be an issue after MOI.
In any case, it's worth knowing if querying the information will give the bounds at current node or of the initial formulation
As far as I recall, these methods have no specific use in callbacks, which is why there's no documentation on it. I would expect that they give either the bounds on the initial formulation or they fail if the solver doesn't support querying this information during a callback.
Trying to use the
setvarLB!
,setvarUB!
getvarLB
,getvarUB
functions in a callback but couldn't find a definition in the docs nor in MathProgBase source code.What's the signature, should these be called with the callback object? Do they get updated in the current node of the branch and bound?
The text was updated successfully, but these errors were encountered: