projects
/
cvc5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
768534c
)
Fix to help with bug 717
author
Clark Barrett
<barrett@cs.stanford.edu>
Sat, 18 Mar 2017 20:46:37 +0000
(13:46 -0700)
committer
Clark Barrett
<barrett@cs.stanford.edu>
Sat, 18 Mar 2017 20:46:37 +0000
(13:46 -0700)
src/theory/arrays/theory_arrays.cpp
patch
|
blob
|
history
diff --git
a/src/theory/arrays/theory_arrays.cpp
b/src/theory/arrays/theory_arrays.cpp
index f9b97d524db54d2a2718e116936f3917c6c5fe73..05094d5a8a635c745325401a61350e9aaf703b03 100644
(file)
--- 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: