3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-29 20:05:51 +00:00

fix internalization on post-visit, increase delay to 100

This commit is contained in:
Nikolaj Bjorner 2021-03-14 17:20:39 -07:00
parent 8412ecbdbf
commit 155738088f
3 changed files with 3 additions and 2 deletions

View file

@ -45,7 +45,7 @@ namespace euf {
if (!visit(arg))
goto loop;
}
if (!post_visit(e, sign, root && a == e))
if (!visited(e) && !post_visit(e, sign, root && a == e))
return false;
m_stack.pop_back();
}