3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-08 04:01:22 +00:00

fix bug in order for model conversion in normalize_bounds

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2018-06-18 09:34:53 -07:00
parent c81f25a1c8
commit cd890bd993
4 changed files with 9 additions and 16 deletions

View file

@ -109,8 +109,8 @@ class normalize_bounds_tactic : public tactic {
expr * def = m_util.mk_add(x_prime, m_util.mk_numeral(val, s));
subst.insert(x, def);
if (produce_models) {
gmc->add(to_app(x)->get_decl(), def);
gmc->hide(x_prime->get_decl());
gmc->add(to_app(x)->get_decl(), def);
}
}
}