Warmstarting LP #276
-
Hello all, void LPWrapper::setWarmStartValues(std::vector<std::pair<int, double>>& columnStarts) {
for (auto& startVal : columnStarts) {
int variable = m_variables.at(startVal.first);
double value = startVal.second;
m_model.getVar(variable).set(GRB_DoubleAttr_PStart, value);
}
} Can I do something similar in COIN CLP ? |
Beta Was this translation helpful? Give feedback.
Answered by
jhmgoossens
Aug 30, 2023
Replies: 1 comment 2 replies
-
Via OsiClpSolverInterface there is WarmStart functionality available. This, however, represents a basis not just a solution. |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
Iain-R
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Via OsiClpSolverInterface there is WarmStart functionality available. This, however, represents a basis not just a solution.
Hope this points you in the right direction.