summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2019-03-21 14:21:39 -0500
committerGitHub <noreply@github.com>2019-03-21 14:21:39 -0500
commita5466f262e16f3ebcd7c62df266a5ac0cd9c5b9a (patch)
tree507bacb1879e5bafa6ae0bdcc661748cb2ee33bf
parent6c8a2652605b031182b3c2c25d237719470f5620 (diff)
Fix bad comparison in RE solver's addMembership (#2880)
-rw-r--r--src/theory/strings/theory_strings.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/theory/strings/theory_strings.cpp b/src/theory/strings/theory_strings.cpp
index 6300345ae..c84ae404a 100644
--- a/src/theory/strings/theory_strings.cpp
+++ b/src/theory/strings/theory_strings.cpp
@@ -5108,7 +5108,8 @@ void TheoryStrings::addMembership(Node assertion) {
if(polarity) {
int index = 0;
NodeIntMap::const_iterator it = d_pos_memberships.find( x );
- if( it!=d_nf_pairs.end() ){
+ if (it != d_pos_memberships.end())
+ {
index = (*it).second;
for( int k=0; k<index; k++ ){
if( k<(int)d_pos_memberships_data[x].size() ){
@@ -5134,7 +5135,8 @@ void TheoryStrings::addMembership(Node assertion) {
}*/
int index = 0;
NodeIntMap::const_iterator it = d_neg_memberships.find( x );
- if( it!=d_nf_pairs.end() ){
+ if (it != d_neg_memberships.end())
+ {
index = (*it).second;
for( int k=0; k<index; k++ ){
if( k<(int)d_neg_memberships_data[x].size() ){
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback