use correct variables

This commit is contained in:
birds3345 2024-07-17 13:40:23 -04:00
parent 59de424f96
commit 9f07cd5e71

View file

@ -48,9 +48,9 @@ void UnionFind::merge(Id a, Id b)
// Ensure that the rank of set A is greater than the rank of set B // Ensure that the rank of set A is greater than the rank of set B
if (ranks[size_t(aSet)] < ranks[size_t(bSet)]) if (ranks[size_t(aSet)] < ranks[size_t(bSet)])
std::swap(a, b); std::swap(aSet, bSet);
parents[size_t(b)] = a; parents[size_t(bSet)] = aSet;
if (ranks[size_t(aSet)] == ranks[size_t(bSet)]) if (ranks[size_t(aSet)] == ranks[size_t(bSet)])
ranks[size_t(aSet)]++; ranks[size_t(aSet)]++;