summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/theory/strings/theory_strings.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/theory/strings/theory_strings.cpp b/src/theory/strings/theory_strings.cpp
index 319315d09..b797953ff 100644
--- a/src/theory/strings/theory_strings.cpp
+++ b/src/theory/strings/theory_strings.cpp
@@ -1834,7 +1834,7 @@ void TheoryStrings::checkExtfInference( Node n, Node nr, ExtfInfoTmp& in, int ef
}
else
{
- do_infer = !areEqual(lit, pol ? d_true : d_false);
+ do_infer = areEqual(lit, !pol ? d_true : d_false);
}
if (do_infer)
{
@@ -1849,6 +1849,7 @@ void TheoryStrings::checkExtfInference( Node n, Node nr, ExtfInfoTmp& in, int ef
}
}
+ /*
for (const auto& kv : d_extf_info_tmp)
{
if (kv.second.d_ctn.find(opol) != kv.second.d_ctn.end())
@@ -1893,6 +1894,7 @@ void TheoryStrings::checkExtfInference( Node n, Node nr, ExtfInfoTmp& in, int ef
}
}
}
+ */
}
else
{
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback