3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-02 17:30:23 +00:00

working on completing ATE/ALA for acce and abce

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2018-01-29 20:32:06 -08:00
parent 3b1810d893
commit 5a2b072ddf
29 changed files with 466 additions and 230 deletions

View file

@ -27,11 +27,11 @@ namespace sat {
if (!c->was_removed())
sz++;
SASSERT(sz == m_size);
unsigned blocked = 0;
unsigned redundant = 0;
for (clause* c : m_clauses)
if (c->is_blocked())
blocked++;
SASSERT(blocked == m_num_blocked);
if (c->is_learned())
redundant++;
SASSERT(redundant == m_num_redundant);
return true;
}