3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-03 22:05:45 +00:00

remove redundant m_row_index from entry

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2024-11-05 10:51:52 -08:00 committed by Lev Nachmanson
parent d4390731f9
commit acc2149270
2 changed files with 60 additions and 66 deletions

View file

@ -188,7 +188,7 @@ namespace lp {
lp_settings& settings() { return lra.settings(); }
bool should_find_cube() {
return m_number_of_calls % settings().m_int_find_cube_period == 0;
return false && m_number_of_calls % settings().m_int_find_cube_period == 0;
}
bool should_gomory_cut() {
@ -201,7 +201,7 @@ namespace lp {
}
bool should_hnf_cut() {
return settings().enable_hnf() && m_number_of_calls % settings().hnf_cut_period() == 0;
return false && settings().enable_hnf() && m_number_of_calls % settings().hnf_cut_period() == 0;
}
lia_move hnf_cut() {