plannerBenchmark.benchmark();
}
protected PlannerBenchmarkFactory buildPlannerBenchmarkFactory(File unsolvedDataFile) {
String benchmarkConfigResource = createBenchmarkConfigResource();
PlannerBenchmarkFactory benchmarkFactory = PlannerBenchmarkFactory.createFromXmlResource(benchmarkConfigResource);
PlannerBenchmarkConfig plannerBenchmarkConfig = benchmarkFactory.getPlannerBenchmarkConfig();
String benchmarkDirectoryPath = plannerBenchmarkConfig.getBenchmarkDirectory().getPath();
// On Windows, getPath() contains backslashes instead of normal slashes
String prefix = "local" + File.separator + "data" + File.separator;
if (!benchmarkDirectoryPath.startsWith(prefix)) {
throw new IllegalStateException("The benchmarkDirectoryPath (" + benchmarkDirectoryPath