mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 01:25:31 +00:00
fix regression bug in mam reported by Aseem
This commit is contained in:
parent
47fdd6c060
commit
3e6ff768a5
2 changed files with 2 additions and 6 deletions
|
@ -2082,11 +2082,9 @@ namespace q {
|
|||
p = p->get_root();
|
||||
for (enode* p2 : euf::enode_parents(p)) {
|
||||
if (p2->get_decl() == f &&
|
||||
num_args == n->num_args() &&
|
||||
num_args == p2->num_args() &&
|
||||
ctx.is_relevant(p2) &&
|
||||
p2->is_cgr() &&
|
||||
i < num_args &&
|
||||
i < p2->num_args() &&
|
||||
p2->get_arg(i)->get_root() == p) {
|
||||
v->push_back(p2);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue