mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 09:05:31 +00:00
additional bit-vector propagators (#4695)
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
549753845e
commit
8691ef1d4d
17 changed files with 423 additions and 121 deletions
|
@ -3854,6 +3854,7 @@ namespace smt {
|
|||
TRACE("final_check_result", tout << "fcs: " << fcs << " last_search_failure: " << m_last_search_failure << "\n";);
|
||||
switch (fcs) {
|
||||
case FC_DONE:
|
||||
log_stats();
|
||||
return l_true;
|
||||
case FC_CONTINUE:
|
||||
break;
|
||||
|
|
|
@ -1178,6 +1178,12 @@ namespace smt {
|
|||
literal arg = ctx.get_literal(diff);
|
||||
lits.push_back(arg);
|
||||
}
|
||||
TRACE("bv",
|
||||
tout << mk_pp(get_enode(v1)->get_owner(), m) << " = " << mk_pp(get_enode(v2)->get_owner(), m) << " "
|
||||
<< ctx.get_scope_level()
|
||||
<< "\n";
|
||||
ctx.display_literals_smt2(tout, lits););
|
||||
|
||||
m_stats.m_num_diseq_dynamic++;
|
||||
scoped_trace_stream st(*this, lits);
|
||||
ctx.mk_th_axiom(get_id(), lits.size(), lits.c_ptr());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue