summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndres Noetzli <andres.noetzli@gmail.com>2020-02-04 06:31:29 -0800
committerGitHub <noreply@github.com>2020-02-04 08:31:29 -0600
commitd90b26309b0f3a4ca9d57349f6cedf7b8bbbe6a8 (patch)
treeb34841cd92a99dbf32e2eda3e79fff67b2a39d74
parentd3e45c1fd1ef3f56f15ad08c783a3d5c54ea10c1 (diff)
Revert semantic change from refactoring (#3711)
-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