3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-11 13:40:52 +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

@ -41,7 +41,7 @@ void generic_model_converter::add(func_decl * d, expr* e) {
void generic_model_converter::operator()(model_ref & md) {
TRACE("model_converter", tout << "before generic_model_converter\n"; model_v2_pp(tout, *md); display(tout););
// IF_VERBOSE(0, verbose_stream() << "Apply converter " << m_orig << "\n";);
model_evaluator ev(*(md.get()));
ev.set_model_completion(true);
ev.set_expand_array_equalities(false);