java.lang.Object
org.cicirello.search.problems.scheduling.MinimumSlackTime
All Implemented Interfaces:
Splittable<ConstructiveHeuristic<Permutation>>, ConstructiveHeuristic<Permutation>

public final class MinimumSlackTime extends Object
This is an implementation of the minimum slack time (MST) heuristic. The slack S(j) of job j is defined as S(j) = d[j] - T - p[j] - s[j], where d[j] is the job's due date, T is the current time, and s[j] is any setup time of the job (for problems with setup times). The MST heuristic chooses to schedule the job with the least slack. We need to define the heuristic h(j) such that h(j) > 0 in order to support stochastic sampling search algorithms. Below we derive the rule that we use.

First, note that since the heuristic is used to compare jobs relative to each other, and since during a specific decision making scenario, the value of T is the same when computing slack for all jobs (it is just the current time), the job that has minimum S(j), also has minimum W(j) = d[j] - p[j] - s[j]. This is equivalent to the job that has maximum value of X(j) = -W(j) = p[j] + s[j] - d[j]. X(j) can be negative or zero. So we will add a constant d[max], to derive our chosen definition of the MST heuristic: h(j) = p[j] + s[j] - d[j] + d[max]. This will always be positive, since if j is the job with max due date, h(j) simplifies to p[j] + s[j], which must be positive since processing times are always positive. And the job that has maximum h(j) has minimum S(j), using this definition is equivalent to the MST heuristic. We do not dynamically update d[max] as jobs are scheduled.

  • Field Details

    • MIN_H

      public static final double MIN_H
      The minimum heuristic value. If the heuristic value as calculated is lower than MIN_H, then MIN_H is used as the heuristic value. The reason is related to the primary purpose of the constructive heuristics in the library: heuristic guidance for stochastic sampling algorithms, which assume positive heuristic values (e.g., an h of 0 would be problematic).
      See Also:
  • Constructor Details

    • MinimumSlackTime

      public MinimumSlackTime(SingleMachineSchedulingProblem problem)
      Constructs an MinimumSlackTime heuristic.
      Parameters:
      problem - The instance of a scheduling problem that is the target of the heuristic.
      Throws:
      IllegalArgumentException - if problem.hasDueDates() returns false.
  • Method Details

    • h

      public double h(Partial<Permutation> p, int element, IncrementalEvaluation<Permutation> incEval)
      Description copied from interface: ConstructiveHeuristic
      Heuristically evaluates the possible addition of an element to the end of a Partial. Higher evaluations imply that the element is a better choice for the next element to add. For example, if you evaluate two elements, x and y, with h, and h returns a higher value for y than for x, then this means that y is believed to be the better choice according to the heuristic. Implementations of this interface must ensure that h always returns a positive result. This is because stochastic sampling algorithms such as HBSS and VBSS assume that the constructive heuristic returns only positive values.
      Parameters:
      p - The current state of the Partial
      element - The element under consideration for adding to the Partial
      incEval - An IncrementalEvaluation of p. This method assumes that incEval is of the same runtime type as the object returned by ConstructiveHeuristic.createIncrementalEvaluation().
      Returns:
      The heuristic evaluation of the hypothetical addition of element to the end of p. The higher the evaluation, the more important the heuristic believes that element should be added next. The intention is to compare the value returned with the heuristic evaluations of other elements. Individual results in isolation are not necessarily meaningful.
    • getProblem

      public final Problem<Permutation> getProblem()
      Description copied from interface: ConstructiveHeuristic
      Gets a reference to the instance of the optimization problem that is the subject of this heuristic.
      Specified by:
      getProblem in interface ConstructiveHeuristic<Permutation>
      Returns:
      the instance of the optimization problem that is the subject of this heuristic.
    • createPartial

      public final Partial<Permutation> createPartial(int n)
      Description copied from interface: ConstructiveHeuristic
      Creates an empty Partial solution, which will be incrementally transformed into a complete solution of a specified length.
      Specified by:
      createPartial in interface ConstructiveHeuristic<Permutation>
      Parameters:
      n - the desired length of the final complete solution.
      Returns:
      an empty Partial solution
    • completeLength

      public final int completeLength()
      Description copied from interface: ConstructiveHeuristic
      Gets the required length of complete solutions to the problem instance for which this constructive heuristic is configured.
      Specified by:
      completeLength in interface ConstructiveHeuristic<Permutation>
      Returns:
      length of solutions to the problem instance for which this heuristic is configured