-
I've been using CBC/CLP for my submission, and it appears the ability for CoinUtils to read in column names from .mps files ( This being the case, can I expect columns in the instances used for the competition to all be named by the same convention or will it be acceptable for me to save columns in that format under the assumption that I save all columns and they share indices with the originally assigned column names? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Turns out this isn't an issue. So please feel free to disregard. For anyone with a similar issue, just make sure to provide a 0 for the second argument in |
Beta Was this translation helpful? Give feedback.
-
Happy you could solve it! |
Beta Was this translation helpful? Give feedback.
Turns out this isn't an issue. So please feel free to disregard. For anyone with a similar issue, just make sure to provide a 0 for the second argument in
OsiClpSolverInterface::getColName(int colIndex, unsigned maxLen=static_cast< unsigned >(std::string::npos))
and to cache the names before your solve since CBC does not persist them.