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:
parent
78626c57d5
commit
a51f5756ba
|
@ -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)) {
|
||||
|
|
Loading…
Reference in a new issue