3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-05 02:40:24 +00:00

code simplification

This commit is contained in:
Nikolaj Bjorner 2022-11-19 18:45:54 +07:00
parent 41b40c3a51
commit dcc995f0e5
3 changed files with 4 additions and 4 deletions

View file

@ -740,7 +740,7 @@ void iexpr_inverter::add_def(expr * v, expr * def) {
return;
SASSERT(uncnstr(v));
SASSERT(to_app(v)->get_num_args() == 0);
m_mc->add(to_app(v)->get_decl(), def);
m_mc->add(v, def);
}
void iexpr_inverter::add_defs(unsigned num, expr* const* args, expr* u, expr* identity) {