3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-17 16:52:15 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-01-16 20:36:46 -08:00
parent ea3b149575
commit 93d1091ad9
10 changed files with 452 additions and 12 deletions

View file

@ -73,7 +73,7 @@ namespace sat {
void erase(clause & c) {
STRACE("clause_use_list_bug", tout << "[cul_erase] " << this << " " << &c << "\n";);
SASSERT(m_clauses.contains(&c));
SASSERT(c.was_removed());
// SASSERT(c.was_removed());
m_size--;
if (c.is_learned()) --m_num_redundant;
}