3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 09:35:32 +00:00
This commit is contained in:
Jakob Rath 2022-11-23 14:55:41 +01:00
parent a39cce18cb
commit 0313f91dc2

View file

@ -73,8 +73,8 @@ namespace polysat {
out_indent() << assignment_pp(s, v, s.get_value(v)) << "\n";
m_used_vars.insert(v);
}
for (clause* lemma : core.side_lemmas()) {
out_indent() << "Side lemma: " << *lemma << "\n";
for (clause* lemma : core.lemmas()) {
out_indent() << "Lemma: " << *lemma << "\n";
for (sat::literal lit : *lemma)
out_indent() << " " << lit_pp(s, lit) << "\n";
}