org.optaplanner.examples.tennis.optional.benchmark.TennisBenchmarkApp Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of optaplanner-examples Show documentation
Show all versions of optaplanner-examples Show documentation
OptaPlanner solves planning problems.
This lightweight, embeddable planning engine implements powerful and scalable algorithms
to optimize business resource scheduling and planning.
This module contains the examples which demonstrate how to use it in a normal Java application.
package org.optaplanner.examples.tennis.optional.benchmark;
import java.io.File;
import org.optaplanner.benchmark.api.PlannerBenchmark;
import org.optaplanner.benchmark.api.PlannerBenchmarkFactory;
import org.optaplanner.examples.common.app.LoggingMain;
import org.optaplanner.examples.tennis.app.TennisApp;
import org.optaplanner.examples.tennis.domain.TennisSolution;
import org.optaplanner.examples.tennis.persistence.TennisGenerator;
public class TennisBenchmarkApp extends LoggingMain {
public static void main(String[] args) {
new TennisBenchmarkApp().benchmark();
}
private final PlannerBenchmarkFactory benchmarkFactory;
public TennisBenchmarkApp() {
benchmarkFactory = PlannerBenchmarkFactory.createFromSolverConfigXmlResource(
TennisApp.SOLVER_CONFIG, new File("local/data/tennis"));
}
public void benchmark() {
TennisSolution problem = new TennisGenerator().createTennisSolution();
PlannerBenchmark plannerBenchmark = benchmarkFactory.buildPlannerBenchmark(problem);
plannerBenchmark.benchmark();
}
}