3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-10 01:05:47 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-04-03 14:39:56 -07:00
parent 918b6a8c03
commit 759fb03daf
3 changed files with 10 additions and 76 deletions

View file

@ -524,7 +524,6 @@ namespace smt {
}
void theory_array_base::collect_shared_vars(sbuffer<theory_var> & result) {
TRACE("array", tout << "collecting shared vars...\n";);
context & ctx = get_context();
ptr_buffer<enode> to_unmark;
unsigned num_vars = get_num_vars();
@ -549,6 +548,7 @@ namespace smt {
r->set_mark();
to_unmark.push_back(r);
}
TRACE("array", tout << "collecting shared vars...\n" << unsigned_vector(result.size(), (unsigned*)result.c_ptr()) << "\n";);
unmark_enodes(to_unmark.size(), to_unmark.c_ptr());
}
#endif