Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion highs/ipm/IpxWrapper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1470,5 +1470,4 @@ HighsStatus reportHipoCrossoverStatus(const HighsOptions& options,
"Hipo: Crossover unrecognised status\n");
return HighsStatus::kError;
}
return HighsStatus::kError;
}
2 changes: 1 addition & 1 deletion highs/lp_data/HighsIis.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ bool HighsIis::rowValueBounds(const HighsLp& lp, const HighsOptions& options) {
}
}
bool below_lower = false;
bool above_upper;
bool above_upper = false;
for (HighsInt iRow = 0; iRow < lp.num_row_; iRow++) {
below_lower = upper_value[iRow] <
lp.row_lower_[iRow] - options.primal_feasibility_tolerance;
Expand Down
6 changes: 6 additions & 0 deletions highs/presolve/HighsPostsolveStack.h
Original file line number Diff line number Diff line change
Expand Up @@ -339,6 +339,12 @@ class HighsPostsolveStack {
case ReductionType::kSlackColSubstitution: {
return "Slack col substitution";
}
case ReductionType::kImpliedEquation: {
return "Implied equation";
}
case ReductionType::kZeroObjSingletonContinuousCol: {
return "Zero obj singleton continuous col";
}
default:
return "Unknown";
}
Expand Down
Loading