mirror of
https://github.com/Z3Prover/z3
synced 2025-04-08 10:25:18 +00:00
add back compression to ensure local functions are inlined #2517
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
c15764e06d
commit
f90db2ba1c
|
@ -2650,7 +2650,7 @@ namespace smt2 {
|
|||
m_ctx.regular_stream() << "(";
|
||||
expr ** expr_it = expr_stack().c_ptr() + spos;
|
||||
expr ** expr_end = expr_it + m_cached_strings.size();
|
||||
// md->compress();
|
||||
md->compress();
|
||||
for (unsigned i = 0; expr_it < expr_end; expr_it++, i++) {
|
||||
model::scoped_model_completion _scm(md, true);
|
||||
expr_ref v = (*md)(*expr_it);
|
||||
|
|
Loading…
Reference in a new issue