Module org.cicirello.chips_n_salsa
Class MinimizeMakespan
java.lang.Object
org.cicirello.search.problems.scheduling.MinimizeMakespan
- All Implemented Interfaces:
IntegerCostOptimizationProblem<Permutation>
,Problem<Permutation>
,SingleMachineSchedulingProblem
Implements the common scheduling cost function known as makespan. The makespan of a schedule is
equal to the completion time of the last job in the schedule. If the problem doesn't have release
dates and setup times, then minimizing makespan is trivial since all possible permutations of the
jobs has a makespan simply equal to the sum of the process times. If the problem has
sequence-dependent setups, then minimizing makespan is NP-Hard and is roughly equivalent to the
wandering salesperson problem.
-
Constructor Summary
ConstructorDescriptionMinimizeMakespan
(SingleMachineSchedulingProblemData instanceData) Constructs a single machine scheduling problem for minimizing makespan. -
Method Summary
Modifier and TypeMethodDescriptionint
cost
(Permutation candidate) Computes the cost of a candidate solution to the problem instance.Gets an object that encapsulates the data describing the scheduling problem instance, such as number of jobs, and the characteristics of the jobs, such as processing times, setup times, due dates, weights, etc.int
minCost()
A lower bound on the minimum theoretical cost across all possible solutions to the problem instance, where lower cost implies better solution.int
value
(Permutation candidate) Computes the value of the candidate solution within the usual constraints and interpretation of the problem.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.cicirello.search.problems.IntegerCostOptimizationProblem
costAsDouble, getSolutionCostPair, isMinCost
-
Constructor Details
-
MinimizeMakespan
Constructs a single machine scheduling problem for minimizing makespan.- Parameters:
instanceData
- An encapsulation of the job characteristics, such as processing times, etc.
-
-
Method Details
-
getInstanceData
Description copied from interface:SingleMachineSchedulingProblem
Gets an object that encapsulates the data describing the scheduling problem instance, such as number of jobs, and the characteristics of the jobs, such as processing times, setup times, due dates, weights, etc.- Specified by:
getInstanceData
in interfaceSingleMachineSchedulingProblem
- Returns:
- an encapsulation of the data describing the scheduling problem instance
-
cost
Description copied from interface:IntegerCostOptimizationProblem
Computes the cost of a candidate solution to the problem instance. The lower the cost, the more optimal the candidate solution.- Specified by:
cost
in interfaceIntegerCostOptimizationProblem<Permutation>
- Parameters:
candidate
- The candidate solution to evaluate.- Returns:
- The cost of the candidate solution. Lower cost means better solution.
-
value
Description copied from interface:IntegerCostOptimizationProblem
Computes the value of the candidate solution within the usual constraints and interpretation of the problem.- Specified by:
value
in interfaceIntegerCostOptimizationProblem<Permutation>
- Parameters:
candidate
- The candidate solution to evaluate.- Returns:
- The actual optimization value of the candidate solution.
-
minCost
public int minCost()Description copied from interface:IntegerCostOptimizationProblem
A lower bound on the minimum theoretical cost across all possible solutions to the problem instance, where lower cost implies better solution. The default implementation returns Integer.MIN_VALUE.- Specified by:
minCost
in interfaceIntegerCostOptimizationProblem<Permutation>
- Returns:
- A lower bound on the minimum theoretical cost of the problem instance.
-