Skip to content

Commit

Permalink
Formatted HighsSolution::hasUndefined()
Browse files Browse the repository at this point in the history
  • Loading branch information
jajhall committed Jul 14, 2024
1 parent 39569be commit faeb3f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lp_data/HighsSolution.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1439,7 +1439,7 @@ bool isBasisRightSize(const HighsLp& lp, const HighsBasis& basis) {
}

bool HighsSolution::hasUndefined() {
for (HighsInt iCol = 0; iCol < HighsInt(this->col_value.size()); iCol++)
for (HighsInt iCol = 0; iCol < HighsInt(this->col_value.size()); iCol++)
if (this->col_value[iCol] == kHighsUndefined) return true;
return false;
}
Expand Down

0 comments on commit faeb3f3

Please sign in to comment.