mirror of
https://github.com/Z3Prover/z3
synced 2025-06-27 00:18:45 +00:00
debugging cuts
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
f962dc8b00
commit
44a79d05c8
4 changed files with 26 additions and 7 deletions
|
@ -119,6 +119,7 @@ namespace sat {
|
|||
|
||||
void cut_simplifier::add_and(literal head, unsigned sz, literal const* lits) {
|
||||
m_aig_cuts.add_node(head, and_op, sz, lits);
|
||||
for (unsigned i = 0; i < sz; ++i) VERIFY(head.var() != lits[i].var());
|
||||
m_stats.m_num_ands++;
|
||||
}
|
||||
|
||||
|
@ -310,8 +311,8 @@ namespace sat {
|
|||
return;
|
||||
IF_VERBOSE(10, verbose_stream() << "new unit " << lit << "\n");
|
||||
validate_unit(lit);
|
||||
s.assign_unit(lit);
|
||||
certify_unit(lit, c);
|
||||
s.assign_unit(lit);
|
||||
++m_stats.m_num_units;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue