3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 17:15:31 +00:00

re-enable delayed literal propagation

This commit is contained in:
Nikolaj Bjorner 2023-11-29 14:00:17 -08:00
parent 4289cfac8d
commit 2f01b5b567
2 changed files with 2 additions and 1 deletions

View file

@ -83,7 +83,7 @@ namespace euf {
void egraph::reinsert_equality(enode* p) {
SASSERT(p->is_equality());
if (p->value() != l_true && p->get_arg(0)->get_root() == p->get_arg(1)->get_root())
add_literal(p, nullptr);
queue_literal(p, nullptr);
}
void egraph::queue_literal(enode* p, enode* ante) {