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:
parent
c81f25a1c8
commit
cd890bd993
4 changed files with 9 additions and 16 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue