3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 09:35:32 +00:00

print lemmas

This commit is contained in:
Jakob Rath 2022-11-14 14:51:54 +01:00
parent 01af25ca02
commit 436881c18c

View file

@ -570,7 +570,10 @@ namespace polysat {
out << " bail vars";
for (auto v : m_bail_vars)
out << " v" << v;
// TODO: side lemmas?
if (!m_lemmas.empty())
out << " side lemmas";
for (clause const* lemma : m_lemmas)
out << " " << show_deref(lemma);
return out;
}
}