3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-09-08 02:31:24 +00:00

debug output

This commit is contained in:
Jakob Rath 2023-01-18 18:46:04 +01:00
parent 905144cdbb
commit 85a8d8b005
3 changed files with 19 additions and 11 deletions

View file

@ -69,6 +69,7 @@ namespace polysat {
if (c.is_always_false()) // filter out trivial constraints such as "4 < 2"
return;
if (c.is_always_true()) {
IF_VERBOSE(10, verbose_stream() << "Clause is tautology because of " << lit_pp(s(), c) << "\n");
m_is_tautology = true;
return;
}