mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 09:05: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
|
@ -2109,11 +2109,9 @@ namespace {
|
|||
for (; it2 != end2; ++it2) {
|
||||
enode * p2 = *it2;
|
||||
if (p2->get_decl() == f &&
|
||||
num_args == n->get_num_args() &&
|
||||
num_args == p2->get_num_args() &&
|
||||
m_context.is_relevant(p2) &&
|
||||
p2->is_cgr() &&
|
||||
i < num_args &&
|
||||
i < p2->get_num_args() &&
|
||||
p2->get_arg(i)->get_root() == p) {
|
||||
v->push_back(p2);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue