Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolajBjorner committed Oct 15, 2023
1 parent 5619ed0 commit 5942dc2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/ast/euf/euf_egraph.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,10 @@ namespace euf {
}
m_expr2enode.setx(f->get_id(), n, nullptr);
push_node(n);
for (unsigned i = 0; i < num_args; ++i)
set_cgc_enabled(args[i], true);
for (unsigned i = 0; i < num_args; ++i) {
set_cgc_enabled(args[i], true);
args[i]->get_root()->set_is_shared(l_undef);
}
return n;
}

Expand Down

0 comments on commit 5942dc2

Please sign in to comment.