summaryrefslogtreecommitdiff
path: root/src/theory/strings/skolem_cache.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/strings/skolem_cache.cpp')
-rw-r--r--src/theory/strings/skolem_cache.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/strings/skolem_cache.cpp b/src/theory/strings/skolem_cache.cpp
index 4c5e41171..2c4deb429 100644
--- a/src/theory/strings/skolem_cache.cpp
+++ b/src/theory/strings/skolem_cache.cpp
@@ -48,7 +48,7 @@ Node SkolemCache::mkTypedSkolemCached(
a = a.isNull() ? a : Rewriter::rewrite(a);
b = b.isNull() ? b : Rewriter::rewrite(b);
- if (options::skolemSharing() || tn == d_strType)
+ if (options::skolemSharing() && tn == d_strType)
{
std::tie(id, a, b) = normalizeStringSkolem(id, a, b);
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback