-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Take into account breaking change in OR-Tools's API, enable SCIP & GLPK solvers, bump OR-Tools #1825
Conversation
Watermelon AI SummaryAI Summary deactivated by flomnes GitHub PRs
Antares_Simulator is an open repo and Watermelon will serve it for free. |
@@ -289,6 +289,17 @@ MPSolver* ORTOOLS_ConvertIfNeeded(const std::string& solverName, | |||
} | |||
} | |||
|
|||
template<class SourceT> | |||
static void transferBasis(std::vector<operations_research::MPSolver::BasisStatus>& destination, | |||
const SourceT& source) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
J'aurais trouvé plus logique une signature tranferBasis(source, destination)
plutôt que tranferBasis(destination, source)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
On utilise la convention destination = source
, où destination
est à gauche du signe égal.
Quality Gate passedKudos, no new issues were introduced! 0 New issues |
SetStartingLpBasisInt
andGetFinalBasisInt
have been removed from recent versions, due to redundancy with their non-Int counterparts.