org.optaplanner.examples.pas.app.PatientAdmissionScheduleApp 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.pas.app;
import java.util.Collections;
import java.util.Set;
import org.optaplanner.examples.common.app.CommonApp;
import org.optaplanner.examples.common.persistence.AbstractSolutionExporter;
import org.optaplanner.examples.common.persistence.AbstractSolutionImporter;
import org.optaplanner.examples.pas.domain.PatientAdmissionSchedule;
import org.optaplanner.examples.pas.persistence.PatientAdmissionScheduleExporter;
import org.optaplanner.examples.pas.persistence.PatientAdmissionScheduleImporter;
import org.optaplanner.examples.pas.persistence.PatientAdmissionScheduleSolutionFileIO;
import org.optaplanner.examples.pas.swingui.PatientAdmissionSchedulePanel;
import org.optaplanner.persistence.common.api.domain.solution.SolutionFileIO;
public class PatientAdmissionScheduleApp extends CommonApp {
public static final String SOLVER_CONFIG = "org/optaplanner/examples/pas/patientAdmissionScheduleSolverConfig.xml";
public static final String DATA_DIR_NAME = "pas";
public static void main(String[] args) {
prepareSwingEnvironment();
new PatientAdmissionScheduleApp().init();
}
public PatientAdmissionScheduleApp() {
super("Hospital bed planning",
"Official competition name: PAS - Patient admission scheduling\n\n" +
"Assign patients to beds.",
SOLVER_CONFIG, DATA_DIR_NAME,
PatientAdmissionSchedulePanel.LOGO_PATH);
}
@Override
protected PatientAdmissionSchedulePanel createSolutionPanel() {
return new PatientAdmissionSchedulePanel();
}
@Override
public SolutionFileIO createSolutionFileIO() {
return new PatientAdmissionScheduleSolutionFileIO();
}
@Override
protected Set> createSolutionImporters() {
return Collections.singleton(new PatientAdmissionScheduleImporter());
}
@Override
protected Set> createSolutionExporters() {
return Collections.singleton(new PatientAdmissionScheduleExporter());
}
}