static <A> void treeSetClusters_merge(Map<A, Collection<A>> clusters, Collection<A> a, Collection<A> b) {
  for (A x : b) { a.add(x); clusters.put(x, a); }
}