summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndres Noetzli <andres.noetzli@gmail.com>2020-01-21 10:24:04 -0800
committerAndres Noetzli <andres.noetzli@gmail.com>2020-01-21 10:24:04 -0800
commit7a7e952f19a72b55777e8572834567d0182be019 (patch)
tree610c4ef2d0eabfedf5018b6dc3bf56b89a148052
parentef956d250129b0c184650eb0e1bee923748eaa91 (diff)
fix
-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