org.optaplanner.examples.travelingtournament.domain.TravelingTournament 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.travelingtournament.domain;
import java.util.List;
import org.optaplanner.core.api.domain.solution.PlanningEntityCollectionProperty;
import org.optaplanner.core.api.domain.solution.PlanningScore;
import org.optaplanner.core.api.domain.solution.PlanningSolution;
import org.optaplanner.core.api.domain.solution.ProblemFactCollectionProperty;
import org.optaplanner.core.api.domain.valuerange.ValueRangeProvider;
import org.optaplanner.core.api.score.buildin.hardsoft.HardSoftScore;
import org.optaplanner.examples.common.domain.AbstractPersistable;
import com.fasterxml.jackson.annotation.JsonIgnore;
@PlanningSolution
public class TravelingTournament extends AbstractPersistable {
private List dayList;
private List teamList;
private List matchList;
private HardSoftScore score;
public TravelingTournament() {
}
public TravelingTournament(long id) {
super(id);
}
@ValueRangeProvider
@ProblemFactCollectionProperty
public List getDayList() {
return dayList;
}
public void setDayList(List dayList) {
this.dayList = dayList;
}
@ProblemFactCollectionProperty
public List getTeamList() {
return teamList;
}
public void setTeamList(List teamList) {
this.teamList = teamList;
}
@PlanningEntityCollectionProperty
public List getMatchList() {
return matchList;
}
public void setMatchList(List matchSets) {
this.matchList = matchSets;
}
@PlanningScore
public HardSoftScore getScore() {
return score;
}
public void setScore(HardSoftScore score) {
this.score = score;
}
// ************************************************************************
// Complex methods
// ************************************************************************
@JsonIgnore
public int getN() {
return teamList.size();
}
}