mirror of
https://github.com/Z3Prover/z3
synced 2025-10-10 17:58:06 +00:00
fix hidden tautology bug on non-learned clauses
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
ece5ad90e0
commit
3b1810d893
7 changed files with 22 additions and 13 deletions
|
@ -3225,7 +3225,9 @@ namespace sat {
|
|||
literal l2 = w.get_literal();
|
||||
if (l.index() > l2.index())
|
||||
continue;
|
||||
out << "(" << l << " " << l2 << ")\n";
|
||||
out << "(" << l << " " << l2 << ")";
|
||||
if (w.is_learned()) out << "*";
|
||||
out << "\n";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue