mirror of
https://github.com/Z3Prover/z3
synced 2025-04-05 09:04:07 +00:00
throttle down cuts from proofs
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
be8febedc3
commit
a7310462df
|
@ -1647,7 +1647,6 @@ namespace lp {
|
|||
return lia_move::conflict;
|
||||
}
|
||||
}
|
||||
std::cout << "new tbs:" << m_tightened_columns.size() << "\n";
|
||||
return lia_move::undef;
|
||||
}
|
||||
|
||||
|
|
|
@ -258,7 +258,7 @@ private:
|
|||
bool m_dio_enable_gomory_cuts = false;
|
||||
bool m_dio_enable_hnf_cuts = true;
|
||||
unsigned m_dio_branching_period = 100; // do branching rarely
|
||||
unsigned m_dio_report_branch_with_term_tigthening_period = 4; // report the branch with term tigthening every 2 iterations
|
||||
unsigned m_dio_report_branch_with_term_tigthening_period = 10000000; // period of reporting the branch with term tigthening
|
||||
|
||||
public:
|
||||
bool print_external_var_name() const { return m_print_external_var_name; }
|
||||
|
|
Loading…
Reference in a new issue