mirror of
https://github.com/Z3Prover/z3
synced 2025-04-15 13:28:47 +00:00
check if trail is empty to avoid collecting variables
This commit is contained in:
parent
8495be11f9
commit
88bf3c6e51
|
@ -25,6 +25,9 @@ Author:
|
|||
|
||||
void model_reconstruction_trail::replay(unsigned qhead, expr_ref_vector& assumptions, dependent_expr_state& st) {
|
||||
|
||||
if (m_trail.empty())
|
||||
return;
|
||||
|
||||
ast_mark free_vars;
|
||||
m_intersects_with_model = false;
|
||||
scoped_ptr<expr_replacer> rp = mk_default_expr_replacer(m, false);
|
||||
|
|
Loading…
Reference in a new issue