3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-11-09 23:52:02 +00:00
This commit is contained in:
Jakob Rath 2023-02-03 16:25:07 +01:00
parent 4b1ec583ec
commit 579275a17d
6 changed files with 16 additions and 39 deletions

View file

@ -421,7 +421,7 @@ namespace polysat {
LOG("p1: " << p1);
LOG("p2: " << p2);
clause_builder cb(s);
clause_builder cb(s, "variable elimination");
if (evaluated) {
for (auto [w, wv] : sub)
@ -434,7 +434,7 @@ namespace polysat {
cb.insert(c_new);
ref<clause> c = cb.build();
if (c) // Can we get tautologies this way?
core.add_lemma("variable elimination", c);
core.add_lemma(c);
}
}