summaryrefslogtreecommitdiff
path: root/src/theory
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory')
-rw-r--r--src/theory/uf/equality_engine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/uf/equality_engine.cpp b/src/theory/uf/equality_engine.cpp
index 1c5419977..8b44cc4d9 100644
--- a/src/theory/uf/equality_engine.cpp
+++ b/src/theory/uf/equality_engine.cpp
@@ -1076,7 +1076,7 @@ void EqualityEngine::buildEqConclusion(EqualityNodeId id1,
<< id2 << "} " << d_nodes[id2] << "\n";
// if has at least as many children as the minimal
// number of children of the n-ary kind, build the node
- if (numChildren >= kind::metakind::getMaxArityForKind(k1))
+ if (numChildren >= kind::metakind::getMinArityForKind(k1))
{
std::vector<Node> children;
for (unsigned j = 0; j < numChildren; ++j)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback