summaryrefslogtreecommitdiff
path: root/src/theory/sets
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2021-07-22 08:59:17 -0500
committerGitHub <noreply@github.com>2021-07-22 13:59:17 +0000
commitd21afb82b4b2dec2e67c454cbc76cc5f5b00df36 (patch)
tree918cac1b0b5cf1288946362269b9880adfc62859 /src/theory/sets
parentd3af203110d575a89a119c4f2c3956a4f6ce69f5 (diff)
Miscellaneous changes in preparation for central equality engine (#6900)
Diffstat (limited to 'src/theory/sets')
-rw-r--r--src/theory/sets/theory_sets_private.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/sets/theory_sets_private.cpp b/src/theory/sets/theory_sets_private.cpp
index 42e317402..4ac74d76c 100644
--- a/src/theory/sets/theory_sets_private.cpp
+++ b/src/theory/sets/theory_sets_private.cpp
@@ -85,7 +85,7 @@ void TheorySetsPrivate::eqNotifyNewClass(TNode t)
void TheorySetsPrivate::eqNotifyMerge(TNode t1, TNode t2)
{
- if (!d_state.isInConflict())
+ if (!d_state.isInConflict() && t1.getType().isSet())
{
Trace("sets-prop-debug")
<< "Merge " << t1 << " and " << t2 << "..." << std::endl;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback