3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-29 11:55:51 +00:00

build of template

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-03-13 18:21:56 -07:00 committed by Lev Nachmanson
parent 1aaf6d879f
commit c68d15f441
4 changed files with 8 additions and 8 deletions

View file

@ -55,7 +55,7 @@ void emonics::pop(unsigned n) {
lpvar last_var = UINT_MAX;
for (lpvar v : m.vars()) {
if (v != last_var) {
remove_cell(m_use_lists[v], i);
remove_cell(m_use_lists[v]);
last_var = v;
}
}
@ -69,7 +69,7 @@ void emonics::pop(unsigned n) {
m_u_f_stack.pop_scope(n);
}
void emonics::remove_cell(head_tail& v, unsigned mIndex) {
void emonics::remove_cell(head_tail& v) {
cell*& cur_head = v.m_head;
cell*& cur_tail = v.m_tail;
cell* old_head = cur_head->m_next;