3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-15 05:18:44 +00:00

fix #3621, the repro file is corrupted so I cannot validate the fix

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-03-31 12:40:24 -07:00
parent 78626c57d5
commit a51f5756ba

View file

@ -772,7 +772,8 @@ namespace smt {
v = find(v);
var_data* d = m_var_data[v];
bool result = false;
for (enode * store : d->m_parent_stores) {
for (unsigned i = 0; i < d->m_parent_stores.size(); ++i) {
enode* store = d->m_parent_stores[i];
SASSERT(is_store(store));
if ((!m_params.m_array_cg || store->is_cgr()) &&
instantiate_default_store_axiom(store)) {