Assembly-Line Scheduling
- Problem
- An item is being manufactured, on assembly lines denoted as i
- There is a time to enter each assembly line ei
- There is a time to exit each assembly line fi
- Each assembly line has n stations, denoted j
- Each station is denoted Si,j
- The time at a station is denoted ai,j
- The time required at each station varies
- An item can be transferred from one line to another after any station
- The transfer time is ti,j
- How can we get the minimum time?
- Sub-Problems
- The fastest way through Si,j is the minimum of
- The fastest way through S1,j−1+a1,j
- The fastest way through S2,j−1+t2,j−1+a1,j
- The fastest way through S2,j is the minimum of
- the fastest way through S2,j−1+a2,j
- the fastest way through S1,j−1+t1,j−1+a2,j
- The fastest way through station j is the minimum of the two subproblems