Skip to content

Commit d24c488

Browse files
fix error in mk_nuget_task.py
Signed-off-by: Nikolaj Bjorner <[email protected]>
1 parent a97e5fc commit d24c488

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/math/lp/int_solver.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ namespace lp {
321321
if (r == lia_move::undef) r = patch_basic_columns();
322322
if (r == lia_move::undef && should_find_cube()) r = int_cube(lia)();
323323
if (r == lia_move::undef) lra.move_non_basic_columns_to_bounds();
324-
if (r == lia_move::undef) r = tighten_bounds();
324+
// if (r == lia_move::undef) r = tighten_bounds();
325325
if (r == lia_move::undef && should_hnf_cut()) r = hnf_cut();
326326
if (r == lia_move::undef && should_gomory_cut()) r = gomory(lia).get_gomory_cuts(2);
327327
if (r == lia_move::undef && should_solve_dioph_eq()) r = solve_dioph_eq();

0 commit comments

Comments
 (0)