Skip to content

Commit 5a1c095

Browse files
committed
Formatted
1 parent 1c5cf45 commit 5a1c095

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

highs/lp_data/HighsLpUtils.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2564,7 +2564,8 @@ HighsStatus assessLpPrimalSolution(const std::string message,
25642564
HighsStatus return_status =
25652565
calculateRowValuesQuad(lp, solution.col_value, row_value);
25662566
if (return_status != HighsStatus::kOk) return return_status;
2567-
const bool have_row_names = lp.row_names_.size() >= static_cast<size_t>(lp.num_row_);
2567+
const bool have_row_names =
2568+
lp.row_names_.size() >= static_cast<size_t>(lp.num_row_);
25682569
for (HighsInt iRow = 0; iRow < lp.num_row_; iRow++) {
25692570
const double primal = solution.row_value[iRow];
25702571
const double lower = lp.row_lower_[iRow];

highs/mip/HighsMipSolver.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ struct MipRaceIncumbent {
3333
std::vector<double>& solution_) const;
3434
};
3535

36-
3736
/*
3837
struct MipRaceIncumbent {
3938
std::atomic<HighsInt> start_write_incumbent = kMipRaceNoSolution;

highs/mip/HighsMipSolverData.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2421,7 +2421,7 @@ bool HighsMipSolverData::checkLimits(int64_t nodeOffset) const {
24212421
const HighsOptions& options = *mipsolver.options_mip_;
24222422

24232423
// This MIP instance may have been terminated
2424-
if (terminatorActive())
2424+
if (terminatorActive())
24252425
if (this->terminatorTerminated()) return true;
24262426

24272427
// Possible user interrupt

0 commit comments

Comments
 (0)