summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/theory/strings/theory_strings.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/strings/theory_strings.cpp b/src/theory/strings/theory_strings.cpp
index 152160cde..c3a67aec9 100644
--- a/src/theory/strings/theory_strings.cpp
+++ b/src/theory/strings/theory_strings.cpp
@@ -1629,7 +1629,7 @@ void TheoryStrings::checkExtfEval( int effort ) {
Trace("strings-extf") << " resolve extf : " << sn << " -> " << nrc << std::endl;
d_im.sendInference(
einfo.d_exp, conc, effort == 0 ? "EXTF" : "EXTF-N", true);
- if (!d_state.isInConflict())
+ if (d_state.isInConflict())
{
Trace("strings-extf-debug") << " conflict, return." << std::endl;
return;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback