Skip to content

Commit d95b549

Browse files
fix #2707
Signed-off-by: Nikolaj Bjorner <[email protected]>
1 parent f0b8da4 commit d95b549

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/smt/theory_array_full.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ namespace smt {
5454
set_prop_upward(v,d);
5555
d_full->m_maps.push_back(s);
5656
m_trail_stack.push(push_back_trail<theory_array, enode *, false>(d_full->m_maps));
57-
for (enode* n : d->m_parent_selects) {
57+
for (unsigned i = 0; i < d->m_parent_selects.size(); ++i) {
58+
enode* n = d->m_parent_selects[i];
5859
SASSERT(is_select(n));
5960
instantiate_select_map_axiom(n, s);
6061
}

0 commit comments

Comments
 (0)