static <A> void copyBestIfAtLeast(Best<A> a, Best<A> b, double minScore) {
  if (a.score() >= minScore) copyBest(a, b);
}