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 70c28e2 commit 6904857Copy full SHA for 6904857
highs/lp_data/HighsLp.cpp
@@ -18,7 +18,7 @@
18
bool HighsLp::isMip() const {
19
size_t integrality_size = this->integrality_.size();
20
if (integrality_size) {
21
- assert((HighsInt) integrality_size == this->num_col_);
+ assert((HighsInt)integrality_size == this->num_col_);
22
for (HighsInt iCol = 0; iCol < this->num_col_; iCol++)
23
if (this->integrality_[iCol] != HighsVarType::kContinuous) return true;
24
}
0 commit comments