mirror of
https://github.com/Z3Prover/z3
synced 2025-05-17 04:34:45 +00:00
add stats on m_dio_branching_conflicts
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
0bf3ca87e7
commit
7e02dfe484
2 changed files with 4 additions and 0 deletions
|
@ -1733,6 +1733,7 @@ namespace lp {
|
|||
if (m_branch_stack.size() == 0) {
|
||||
lra.stats().m_dio_branching_infeasibles++;
|
||||
transfer_explanations_from_closed_branches();
|
||||
lra.stats().m_dio_branching_conflicts++;
|
||||
return lia_move::conflict;
|
||||
}
|
||||
need_create_branch = false;
|
||||
|
@ -1761,6 +1762,7 @@ namespace lp {
|
|||
if (m_branch_stack.size() == 0) {
|
||||
lra.stats().m_dio_branching_infeasibles++;
|
||||
transfer_explanations_from_closed_branches();
|
||||
lra.stats().m_dio_branching_conflicts++;
|
||||
return lia_move::conflict;
|
||||
}
|
||||
TRACE("dio_br", tout << lp_status_to_string(lra.get_status()) << std::endl;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue