summaryrefslogtreecommitdiff
path: root/src/theory/arrays
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/arrays')
-rw-r--r--src/theory/arrays/theory_arrays.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/theory/arrays/theory_arrays.cpp b/src/theory/arrays/theory_arrays.cpp
index f9b97d524..05094d5a8 100644
--- a/src/theory/arrays/theory_arrays.cpp
+++ b/src/theory/arrays/theory_arrays.cpp
@@ -354,10 +354,11 @@ Theory::PPAssertStatus TheoryArrays::ppAssert(TNode in, SubstitutionMap& outSubs
case kind::NOT:
{
d_ppFacts.push_back(in);
- Assert(in[0].getKind() == kind::EQUAL );
- Node a = in[0][0];
- Node b = in[0][1];
- d_ppEqualityEngine.assertEquality(in[0], false, in);
+ if (in[0].getKind() == kind::EQUAL ) {
+ Node a = in[0][0];
+ Node b = in[0][1];
+ d_ppEqualityEngine.assertEquality(in[0], false, in);
+ }
break;
}
default:
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback