3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-07 18:05:21 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2021-07-11 06:42:27 +02:00
parent 10ad5bae21
commit 18a76ab82c
2 changed files with 3 additions and 3 deletions

View file

@ -140,8 +140,8 @@ namespace euf {
s().mk_clause(~lit, lit2, sat::status::th(m_is_redundant, m.get_basic_family_id()));
s().mk_clause(lit, ~lit2, sat::status::th(m_is_redundant, m.get_basic_family_id()));
if (relevancy_enabled()) {
add_root(~lit, lit2);
add_root(lit, ~lit2);
add_aux(~lit, lit2);
add_aux(lit, ~lit2);
}
lit = lit2;
}

View file

@ -50,7 +50,7 @@ namespace q {
}
return;
}
if (exp.size() > 1 && is_exists(q) /* && l.sign() */) {
if (exp.size() > 1 && is_exists(q) && l.sign()) {
sat::literal_vector lits;
lits.push_back(~l);
for (expr* e : exp)