org.optaplanner.examples.machinereassignment.domain.MachineReassignment 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.
/*
* Copyright 2011 Red Hat, Inc. and/or its affiliates.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.optaplanner.examples.machinereassignment.domain;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annotations.XStreamConverter;
import org.optaplanner.core.api.domain.solution.PlanningEntityCollectionProperty;
import org.optaplanner.core.api.domain.solution.PlanningSolution;
import org.optaplanner.core.api.domain.solution.Solution;
import org.optaplanner.core.api.domain.valuerange.ValueRangeProvider;
import org.optaplanner.core.api.score.buildin.hardsoftlong.HardSoftLongScore;
import org.optaplanner.core.impl.score.buildin.hardsoftlong.HardSoftLongScoreDefinition;
import org.optaplanner.examples.common.domain.AbstractPersistable;
import org.optaplanner.examples.machinereassignment.domain.solver.MrServiceDependency;
import org.optaplanner.persistence.xstream.impl.score.XStreamScoreConverter;
@PlanningSolution
@XStreamAlias("MachineReassignment")
public class MachineReassignment extends AbstractPersistable implements Solution {
private MrGlobalPenaltyInfo globalPenaltyInfo;
private List resourceList;
private List neighborhoodList;
private List locationList;
private List machineList;
private List machineCapacityList;
private List serviceList;
private List processList;
private List balancePenaltyList;
private List processAssignmentList;
@XStreamConverter(value = XStreamScoreConverter.class, types = {HardSoftLongScoreDefinition.class})
private HardSoftLongScore score;
public MrGlobalPenaltyInfo getGlobalPenaltyInfo() {
return globalPenaltyInfo;
}
public void setGlobalPenaltyInfo(MrGlobalPenaltyInfo globalPenaltyInfo) {
this.globalPenaltyInfo = globalPenaltyInfo;
}
public List getResourceList() {
return resourceList;
}
public void setResourceList(List resourceList) {
this.resourceList = resourceList;
}
public List getNeighborhoodList() {
return neighborhoodList;
}
public void setNeighborhoodList(List neighborhoodList) {
this.neighborhoodList = neighborhoodList;
}
public List getLocationList() {
return locationList;
}
public void setLocationList(List locationList) {
this.locationList = locationList;
}
@ValueRangeProvider(id = "machineRange")
public List getMachineList() {
return machineList;
}
public void setMachineList(List machineList) {
this.machineList = machineList;
}
public List getMachineCapacityList() {
return machineCapacityList;
}
public void setMachineCapacityList(List machineCapacityList) {
this.machineCapacityList = machineCapacityList;
}
public List getServiceList() {
return serviceList;
}
public void setServiceList(List serviceList) {
this.serviceList = serviceList;
}
public List getProcessList() {
return processList;
}
public void setProcessList(List processList) {
this.processList = processList;
}
public List getBalancePenaltyList() {
return balancePenaltyList;
}
public void setBalancePenaltyList(List balancePenaltyList) {
this.balancePenaltyList = balancePenaltyList;
}
@PlanningEntityCollectionProperty
public List getProcessAssignmentList() {
return processAssignmentList;
}
public void setProcessAssignmentList(List processAssignmentList) {
this.processAssignmentList = processAssignmentList;
}
public HardSoftLongScore getScore() {
return score;
}
public void setScore(HardSoftLongScore score) {
this.score = score;
}
// ************************************************************************
// Complex methods
// ************************************************************************
public Collection extends Object> getProblemFacts() {
List