We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b9fa73 commit 1b632d3Copy full SHA for 1b632d3
highs/mip/HighsFeasibilityJump.cpp
@@ -142,13 +142,7 @@ HighsModelStatus HighsMipSolverData::feasibilityJump() {
142
// Initial assignments that violate integrality or column bounds can lead to
143
// infeasible results. Even if those initial assignments should not occur,
144
// use trySolution rather than addIncumbent for an explicit check.
145
- bool is_really_feasible =
146
- trySolution(col_value, kSolutionSourceFeasibilityJump);
147
- if (!is_really_feasible) {
148
- highsLogUser(log_options, HighsLogType::kInfo,
149
- "Discarding infeasible result from Feasibility Jump\n");
150
- }
151
- assert(is_really_feasible);
+ trySolution(col_value, kSolutionSourceFeasibilityJump);
152
}
153
return HighsModelStatus::kNotset;
154
#endif
0 commit comments