while (timeLeft > 0L) {
if (!it.hasNext()) {
it = unifiedProblemBenchmarkResultList.iterator();
}
ProblemBenchmarkResult problemBenchmarkResult = it.next();
timeLeft = problemBenchmarkResult.warmUp(startingTimeMillis, plannerBenchmarkResult.getWarmUpTimeMillisSpentLimit(), timeLeft);
}
logger.info("================================================================================");
logger.info("Warm up ended");
logger.info("================================================================================");
}