We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34a14a9 commit 7c2b025Copy full SHA for 7c2b025
highs/io/HMpsFF.cpp
@@ -108,8 +108,8 @@ FreeFormatParserReturnCode HMpsFF::loadProblem(
108
109
// Only set up lp.integrality_ if non-continuous
110
bool is_mip = false;
111
- for (const auto& integrality : col_integrality) {
112
- if (integrality != HighsVarType::kContinuous) {
+ for (const auto& var_type : col_integrality) {
+ if (var_type != HighsVarType::kContinuous) {
113
is_mip = true;
114
break;
115
}
0 commit comments