3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-21 02:30:23 +00:00

better model replay for loose entries

This commit is contained in:
Nikolaj Bjorner 2024-10-16 13:07:04 -07:00
parent 5a5e39ae74
commit 92376e67f2
3 changed files with 24 additions and 4 deletions

View file

@ -101,7 +101,6 @@ class model_reconstruction_trail {
*/
void add_model_var(func_decl* f) {
if (!m_model_vars.is_marked(f)) {
verbose_stream() << "add model var " << f->get_name() << "\n";
m_model_vars_trail.push_back(f);
m_model_vars.mark(f, true);
m_trail_stack.push(undo_model_var(*this));