Skip to content

Commit

Permalink
fix soundness bug in disabled code
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolajBjorner committed Apr 16, 2023
1 parent b75d81f commit 97b66d1
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/math/lp/gomory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -390,6 +390,7 @@ int gomory::find_basic_var() {
const row_strip<mpq>& row = lra.get_row(lia.row_of_basic_column(result));
if (is_gomory_cut_target(row))
return result;
result = -1;
#endif

for (unsigned j : lra.r_basis()) {
Expand Down

0 comments on commit 97b66d1

Please sign in to comment.