From 1e8a4e25751263a923a8d4cfd4d404fc0d24aa03 Mon Sep 17 00:00:00 2001 From: Andrew Reynolds Date: Mon, 4 Jun 2018 14:55:10 -0500 Subject: [PATCH] Move assertion. (#2051) --- src/theory/arrays/theory_arrays.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/theory/arrays/theory_arrays.cpp b/src/theory/arrays/theory_arrays.cpp index 87edbe316..9a51a1f43 100644 --- a/src/theory/arrays/theory_arrays.cpp +++ b/src/theory/arrays/theory_arrays.cpp @@ -668,6 +668,7 @@ void TheoryArrays::preRegisterTermInternal(TNode node) { d_equalityEngine.addTerm(node); } + Assert((d_isPreRegistered.insert(node), true)); if (options::arraysLazyRIntro1() && !options::arraysWeakEquivalence()) { // Apply RIntro1 rule to any stores equal to store if not done already @@ -717,7 +718,6 @@ void TheoryArrays::preRegisterTermInternal(TNode node) d_reads.push_back(node); } - Assert((d_isPreRegistered.insert(node), true)); checkRowForIndex(node[1], store); break; } -- 2.30.2