3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-28 11:25:51 +00:00

use the simple version of move_non_basic_column_to_bounds

This commit is contained in:
Lev Nachmanson 2023-10-05 20:57:54 -07:00
parent bf3817ef7c
commit f847d039bc
5 changed files with 27 additions and 33 deletions

View file

@ -24,7 +24,7 @@ namespace lp {
int_branch::int_branch(int_solver& lia):lia(lia), lra(lia.lra) {}
lia_move int_branch::operator()() {
lra.move_non_basic_columns_to_bounds(true);
lra.move_non_basic_columns_to_bounds();
int j = find_inf_int_base_column();
return j == -1? lia_move::sat : create_branch_on_column(j);
}