summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndres Noetzli <andres.noetzli@gmail.com>2019-01-23 01:59:11 -0800
committerAndres Noetzli <andres.noetzli@gmail.com>2019-01-23 01:59:11 -0800
commit836da287a2520119abf5c05cd6808729a1ae3e7b (patch)
treee2220c7bf2a524a05e4b501f5e3aeac596c53c4f
parent2906f8ba568ae9eb999730f92c10741c87afb592 (diff)
Fix
-rw-r--r--src/theory/strings/theory_strings_rewriter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/strings/theory_strings_rewriter.cpp b/src/theory/strings/theory_strings_rewriter.cpp
index b5ef65f40..026280bde 100644
--- a/src/theory/strings/theory_strings_rewriter.cpp
+++ b/src/theory/strings/theory_strings_rewriter.cpp
@@ -3589,7 +3589,7 @@ bool TheoryStringsRewriter::stripConstantEndpoints(std::vector<Node>& n1,
std::vector<Node>& ne,
int dir)
{
- if (options::stringsRewriterStripConstantEndpoints())
+ if (!options::stringsRewriterStripConstantEndpoints())
{
return false;
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback