Skip to content

Commit

Permalink
Formatted with Ubuntu clang-format version 14.0.0-1ubuntu1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jajhall committed Sep 9, 2024
1 parent b8a716f commit cd80bd5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/lp_data/HighsSolve.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ HighsStatus solveLp(HighsLpSolverObject& solver_object, const string message) {
return HighsStatus::kError;
}
} // options.run_crossover == kHighsOnString
} // unwelcome_ipx_status
} // unwelcome_ipx_status
} else {
// PDLP has been used, so check whether claim of optimality
// satisfies the HiGHS criteria
Expand Down
4 changes: 2 additions & 2 deletions src/test/DevKkt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -261,8 +261,8 @@ void checkComplementarySlackness(const State& state,
if (fabs(state.colDual[i]) > tol &&
fabs(state.colValue[i] - state.colUpper[i]) > tol) {
if (dev_print)
std::cout << "Comp. slackness fail: " << "l[" << i
<< "]=" << state.colLower[i] << ", x[" << i
std::cout << "Comp. slackness fail: "
<< "l[" << i << "]=" << state.colLower[i] << ", x[" << i
<< "]=" << state.colValue[i] << ", z[" << i
<< "]=" << state.colDual[i] << std::endl;
infeas = fabs(state.colDual[i]);
Expand Down

0 comments on commit cd80bd5

Please sign in to comment.