Skip to content

Commit 66f9532

Browse files
committed
Improve CG infeasibility detection
1 parent 89ab941 commit 66f9532

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/algorithms/column_generation.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -894,6 +894,11 @@ const ColumnGenerationOutput columngenerationsolver::column_generation(
894894
output.relaxation_solution = solution_builder.build();
895895
break;
896896
}
897+
if (parameters.tabu != nullptr
898+
&& parameters.tabu->size() > 0) {
899+
output.relaxation_solution = solution_builder.build();
900+
break;
901+
}
897902

898903
// Otherwise, increase the dummy column objective coefficient and
899904
// restart.

0 commit comments

Comments
 (0)