static void runStrategyForever(Best best, Steppable strategy) {
double score = best.score();
long sameScoreSince = 0;
while licensed {
if (strategy.step()) ret;
++sameScoreSince;
if (best.score() != score) {
print("Improvement after " + n2(sameScoreSince, "round") + ": " + best);
sameScoreSince = 0;
score = best.score();
}
}
}