3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-28 11:25:51 +00:00

disable macro finder tactic if there are recursive functions fix #5574

This commit is contained in:
Nikolaj Bjorner 2021-09-29 09:33:46 -07:00
parent 137e5c5263
commit 62fd22f555
3 changed files with 7 additions and 2 deletions

View file

@ -120,7 +120,6 @@ namespace array {
bool solver::must_have_different_model_values(theory_var v1, theory_var v2) {
euf::enode* else1 = nullptr, * else2 = nullptr;
euf::enode* n1 = var2enode(v1), *n2 = var2enode(v2);
euf::enode* r1 = n1->get_root(), * r2 = n2->get_root();
expr* e1 = n1->get_expr();
if (!a.is_array(e1))
return true;