Scheduling is one of the most fascinating areas of Discrete Optimization. They are beautiful scientifically meanwhile there is a lot of application in practice. Constraint programming has been really successful in this area. The problem you usually deal with is to minimize some project duration, subject to some precedence constraints (say, some task has to come before others), and/or disjunctive constraints (say, no two tasks scheduled on the same machine).



Scheduling

The simplest scheduling problem can usually be modeled like this:

  1. A set of tasks Ω
  2. Each task t has a duration d(t)
  3. Each task t executes on machine m(t) and a machine must handle its tasks sequentially, no two tasks scheduled on the same machine can overlap in time (disjunctive constraints).
  4. A set of precedence constraints (b, a) stating that task a must start after task b has completed.

What you want to do is to find and ordering of the tasks on each machine, and schedule all these tasks so that you minimize the project completion time, i.e. finish the project as early as possible.

Behind the scene, this model is compiled into decision variables and constraints:

  • Every activity has 3 variables: starting date, ending date, and duration (s, e, d)
    • A constraint is used to link these three variables s + d = e
  • Each procedure (b, a) has precedence constraint sa ≥ eb
  • Each machine m gives a disjunctive constraint disj(t1, ..., tn)

The beautiful thing is that minimizing project duration under precedence constraints is a polynomial time problem.

Feasibility of Disjunctive Constraints

However disjunctive constraints are quite different, even for a simple one machine, detecting feasibility of a disjunctive constraint is NP-complete hard. So instead of solving this problem exactly, we will approximate it efficiently. Assume some notations:

  • s(Ω): The earliest time at which one of the tasks inside the set of tasks Ω can start
  • e(Ω): The latest time at which all tasks inside the set of tasks Ω must finish
  • d(Ω): The sum of the duration of all tasks inside the set of tasks Ω

At this point we are trying to find if these disjunctive constraints are feasible. Let’s first try a simple feasibility test, to check if a set of tasks T can be scheduled on the machine, we check this little inequality:

s(T) + d(T) ≤ e(T)

In a sense, this is a terrible test. The set of tasks T may pass the test easily, but actually proven to be infeasible.

How to improve it? Instead of tasks T, let’s consider the subset Ω of the tasks inside T. We want to look at all possible subsets of the tasks inside T, to check which subsets are feasible:

s(Ω) + d(Ω) ≤ e(Ω) for all Ω ⊆ T


Now the new problem is there are exponential many of subsets, that does not sound good. Actually in practice we only need to look at quadratic many of them. Suppose a set of tasks contains 3 tasks, we only need to consider the starting time of t1 and the ending time of t2, the task t3 … are only used to increase the total duration.

   s(t1)
   |----t1----
       ------t3-------
                ...
                -------t2-------|
                                e(t2)

So we don’t need to consider all the possible combinations of all 3 tasks, we only need to pick a starting time, and an ending time, and pack everything in between. This is usually call task intervals:

S(t1, t2) = {t in T | s(t) ≥ s(t1) and e(t) ≤ e(t2)}

Now the feasibility test can only focus on tasks intervals, we could apply the feasibility test for all task intervals in T, the complexity of this test is cubic O(|T|3). We can do better to make it quadratic or even logarithmic.

The intuition behind the quadratic algorithm is to look at one ending time e, and in one sweep from e to the starting time of all tasks, we could compute all the task intervals that if e is the latest ending time.

So in this particular case, you are going to first fix the ending time e and then look at s3, s2, and s1. We going to compute the task interval incrementally by adding the duration, and perform the feasibility test.


 -------+-----+-----------+---------+------>  time
        s1    s2          s3         e

        < - - - - - - - - - - - - - - 

The pseudo-code of the algorithm:

d := 0;              // fix ending time, total duration is zero
for each task t in decreasing order of st
  if et <= e         // ending time of task is earlier than e
    d := d + dt;     // add the duration of task to total duration
    if st + d > e    // perform the feasibility test
      return failure;      // feasibility test failed
return success;      // feasibility test successful

You would have a successful particular value of e given all tests are passed, but we need to test all possible e‘s. It is linear for every one of these e‘s, this algorithm is going to be quadratic because we have a linear of times of e.

So far we have been assuming that none of the tasks can be interrupted, but if we can actually interrupt the task, it is even possible to do better using preemptive scheduling, which essentially is another kind of relaxation. One-machine preemptive feasibility test can be computed in O(|T| log|T|).

Disjunctive Pruning: Edge Finding Rule

Edge Finding Rule is one of the rules that we can apply for pruning. The key idea is you select a set Ω of tasks, and a task i ∉ Ω. What we are wondering is that has this task i to be scheduled always after the other tasks in Ω.

To determine if task i must start after all tasks in Ω:

s(Ω ∪ {i}) + d(Ω ∪ {i}) > e(Ω)

Once you know that the task i has to start after all the tasks in Ω, you would need to update the starting time of task i to max(γ ∈ Ω) s(γ) + d(γ).

The edge finding rules can be enforced in strongly polynomial time. This is basically the type of pruning that happens in the scheduling algorithm. So there are many of, you know many of other types but they do essentially the same thing, pushing the starting date or pushing the ending date.



Search Strategy for Disjunctive Scheduling

The search strategy, most of the time, is choosing a machine and then ordering the task in the machine, and then repeating that for the other machine. But:

  1. Which machine?
    • The tightest machine.
  2. Which task?
    • A task that can be scheduled first (or last)
    • A task that is as tight as possible

Large Neighborhood Search

Large Neighborhood Search is an amazing technique, which is a hybrid of Local Search and Constraint Programming (or Mixed Integer Programming).

Recall that Constraint Programming is very good at:

  1. Find feasible solutions
  2. Optimize small combinatorial space

When you combine Local Search and Constraint Programming, in a sense, you exploited two strengths of Constraints Programming for finding a high quality solution and you exploit local search for scalability.

The first step that you start with is to find a feasible solution using Constraint Programming. The second step is that you select a neighborhood using Local Search, using the feasible solution you just found. However this neighborhood is gonna be large, you can used the Constraint Programming again to optimize the neighborhood, finding the best neighbor in that neighborhood. Then you can repeat this process forever for improving the quality of the solutions that you have.

  1. Find a feasible solution (Constraint Programming)
  2. Select a neighborhood using the feasible solution in step 1 (Local Search)
  3. Find the best neighbor in the neighborhood (Constraint Programming)
  4. Go to step 2

What is the neighborhood? In the solution, there are:

  1. Some variables that you believe them are nice, and you keep them fixed.
  2. The remaining variables that you can try to find better values for them.

The neighborhood will be found out by changing values for the remaining variables, the one that you are not fixing, such that you improve the quality of the solution that you have found so far.

The way to choose the fixed variables and the variables to fine tune are problem-specific. In some particular case you can have a completely random neighborhood that’s going to behave very well. It depends.

Of course, you can generalize this to Mixed Integer Program. You can find a feasible solution using Mixed Integer Programming and you can exploit the neighborhood using Mixed Integer Programming, also.

Column Generation

Recall when solving an Mixed Integer Program with exponentially many constraints, we generate constraints on demand, based on the value of linear relaxation.

The Column Generation is the similar idea, but reverse. When solving a Linear Program with exponentially many variables which usually represent complex objects, again, we want generate these variables on demand. Branch and Price is a good example of Branch and Bound but using Column Generation at every one of the nodes.



The Cutting Stock Problem

Suppose you have large wood boards of length L, and you want to cut them into small shelves of different sizes, which are required by your customers. You want to find how many wood boards you need to meet the demand.


|- - - - - - - - - - - - - - -|  wood board

|- - -|                          shelf type 1 with size l1, demand d1
|- - - - -|                      shelf type 2 with size l2, demand d2
...
|- - - - - - - - -|              shelf type n with size ln, demand dn

Using binary decision variables for each wood board sounds a good idea to build a model:

  • yb = 1 if board b is used in the solution
  • xsb is the number of shelves of type s cut from type b

however this will lead to complicated constraints like:

  • xsb ≤ yb M (using Big-M notation) a board is used if some shelf is cut from it
  • s∈S ls xsb ≤ L the shelves cut from a board can not exceed the capacity of the board
  • b∈B xsb ≥ ds meet the demand from customers

Boards are actually interchangeable, so this model is terrible because it has lots of symmetries, which will lead to a very bad linear relaxation.

Another way to model this problem is to reason about the cutting configurations, i.e. specific ways to cut a board. We can find all these configurations. Each configuration will specify the number of shelves of different types that it consists of. For example, configuration 1 will produce 2 shelves of type 1 and 1 shelves of type 5.

Now the decision variable will be the number of each type of configurations: xc. Now the new model will be very simple, with just one constraint: meet the demand.

min ∑c∈C xc
s.t.
    ∑c∈C ncs xc ≥ ds (s ∈ S)
    xc ∈ ℕ

where
ncs is the number of shelf of type s, that configuration c is providing

This new model has very strong relaxation, and there is no symmetries.

Note the capacity constraint is actually built into the configurations. Every configuration c must satisfy s∈S ls ncs ≤ L. It might be impossible to enumerate all of them, so we can not generate them at the very beginning. We are going to generate these configurations, one at a time, on demand.

So this the tableau at a higher level, in this particular case all the variables, which represent the configurations. Every one of these column is a configuration, and that configuration is telling you, how many of various types of shelf it is producing.

           x1     x2      ...    xi
obj        1      1      ...     1      d1
shelf1     n1,1    n2,1    ...    ni,1    d2
...
shelf|S|   n1,|S|   n2,|S|   ...   ni,|S|   d|S|

               new column added here ↑

Say that we have a bunch of configurations, we have solved the linear program, we get a good solution. And then can we improve this linear relaxation? And what we do is basically to:

  1. Find a new column (configuration) which is actually a new knapsack problem, which must satisfy two conditions:
    • feasibility s∈S ls ncs ≤ L
    • quality, i.e. reduced cost is negative to ensure entering the basis (of the Simplex method)
  2. Add that column into the tableau matrix, and
  3. Get a better linear relaxation

Branch and Price

If you want to do branch and price, it is the same idea except that column generation is at one particular node of the tree. Column generation is giving you a good lower bound at every one of the nodes by generating variables on the fly. And as soon as you do a branching decision, you can start regenerating a new column for improving the value of the linear relaxation.

You basically iterate:

  1. branching, and then
  2. doing column generation to find a really nice lower bound.

It’s a very interesting setting when you know you have different kinds of complex objects that you have to manipulate.



    For more on Discrete Optimization: Scheduling, Column Generation, please refer to the wonderful course here https://www.coursera.org/learn/discrete-optimization


    Related Quick Recap


    I am Kesler Zhu, thank you for visiting my website. Check out more course reviews at https://KZHU.ai

    Don't forget to sign up newsletter, don't miss any chance to learn.

    Or share what you've learned with friends!