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