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
The call MOI.set(clp, MOI.RawParameter("SolveType", 4)) ends up calling ClpSolve_setSolveType(model.solver_options, 4).
The error is then raised because the signature of ClpSolve_setSolveType is
ClpSolve_setSolveType(arg1, method, extraInfo)
(same for ClpSolve_setPresolveType)
According to this, passing extraInfo = -1 results in default behavior.
The following used to work but now results in a
MethodError
:I did not see any other other case where the following
Error message:
There are at least 3 ways of fixing this. PR incoming.
The text was updated successfully, but these errors were encountered: