Skip to content

Commit 6904857

Browse files
committed
formatting
1 parent 70c28e2 commit 6904857

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

highs/lp_data/HighsLp.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
bool HighsLp::isMip() const {
1919
size_t integrality_size = this->integrality_.size();
2020
if (integrality_size) {
21-
assert((HighsInt) integrality_size == this->num_col_);
21+
assert((HighsInt)integrality_size == this->num_col_);
2222
for (HighsInt iCol = 0; iCol < this->num_col_; iCol++)
2323
if (this->integrality_[iCol] != HighsVarType::kContinuous) return true;
2424
}

0 commit comments

Comments
 (0)