MAZ - Assembly Line Scheduling
MAZ - Assembly Line Scheduling
I chassis has to get all the way through station n on either line
1 or 2 and then exit
I the faster of these ways is the fastest way through the entire
factory
e1 + a1,1 if j = 1
f1 [j] =
min(f1 [j − 1] + a1,j , f2 [j − 1] + t2,j−1 + a1,j ) if j ≥ 2
e2 + a2,1 if j = 1
f2 [j] =
min(f2 [j − 1] + a2,j , f1 [j − 1] + t1,j−1 + a2,j ) if j ≥ 2
2% 1% 2% 2% 1%
e2 = 4 → 8→ 5→ 6→ 4→ 5→ 7→ x2 = 2
line 2 S2,1 S2,2 S2,3 S2,4 S2,5 S2,6 exit
j 1 2 3 4 5 6 j 2 3 4 5 6
f1 [j] 9 18 20 24 32 35 l1 [j] 1 2 1 1 2
f2 [j] 12 16 22 25 30 37 l2 [j] 1 2 1 2 2
I f ∗ = 38 and l ∗ = 1
2% 1% 2% 2% 1%
e2 = 4 → 8→ 5→ 6→ 4→ 5→ 7→ x2 = 2
line 2 S2,1 S2,2 S2,3 S2,4 S2,5 S2,6 exit
j 1 2 3 4 5 6 j 2 3 4 5 6
f1 [j] 9 l1 [j]
f2 [j] 12 l2 [j]
2% 1% 2% 2% 1%
e2 = 4 → 8→ 5→ 6→ 4→ 5→ 7→ x2 = 2
line 2 S2,1 S2,2 S2,3 S2,4 S2,5 S2,6 exit
j 1 2 3 4 5 6 j 2 3 4 5 6
f1 [j] 9 18 l1 [j] 1
f2 [j] 12 16 l2 [j] 1
2% 1% 2% 2% 1%
e2 = 4 → 8→ 5→ 6→ 4→ 5→ 7→ x2 = 2
line 2 S2,1 S2,2 S2,3 S2,4 S2,5 S2,6 exit
j 1 2 3 4 5 6 j 2 3 4 5 6
f1 [j] 9 18 20 l1 [j] 1 2
f2 [j] 12 16 22 l2 [j] 1 2
2% 1% 2% 2% 1%
e2 = 4 → 8→ 5→ 6→ 4→ 5→ 7→ x2 = 2
line 2 S2,1 S2,2 S2,3 S2,4 S2,5 S2,6 exit
j 1 2 3 4 5 6 j 2 3 4 5 6
f1 [j] 9 18 20 24 l1 [j] 1 2 1
f2 [j] 12 16 22 25 l2 [j] 1 2 1
2% 1% 2% 2% 1%
e2 = 4 → 8→ 5→ 6→ 4→ 5→ 7→ x2 = 2
line 2 S2,1 S2,2 S2,3 S2,4 S2,5 S2,6 exit
j 1 2 3 4 5 6 j 2 3 4 5 6
f1 [j] 9 18 20 24 32 l1 [j] 1 2 1 1
f2 [j] 12 16 22 25 30 l2 [j] 1 2 1 2
2% 1% 2% 2% 1%
e2 = 4 → 8→ 5→ 6→ 4→ 5→ 7→ x2 = 2
line 2 S2,1 S2,2 S2,3 S2,4 S2,5 S2,6 exit
j 1 2 3 4 5 6 j 2 3 4 5 6
f1 [j] 9 18 20 24 32 35 l1 [j] 1 2 1 1 2
f2 [j] 12 16 22 25 30 37 l2 [j] 1 2 1 2 2
2% 1% 2% 2% 1%
e2 = 4 → 8→ 5→ 6→ 4→ 5→ 7→ x2 = 2
line 2 S2,1 S2,2 S2,3 S2,4 S2,5 S2,6 exit
j 1 2 3 4 5 6 j 2 3 4 5 6
f1 [j] 9 18 20 24 32 35 l1 [j] 1 2 1 1 2
f2 [j] 12 16 22 25 30 37 l2 [j] 1 2 1 2 2
I f ∗ = 38 and l ∗ = 1
2% 1% 2% 2% 1%
e2 = 4 → 8→ 5→ 6→ 4→ 5→ 7→ x2 = 2
line 2 S2,1 S2,2 S2,3 S2,4 S2,5 S2,6 exit
j 1 2 3 4 5 6 j 2 3 4 5 6
f1 [j] 9 18 20 24 32 35 l1 [j] 1 2 1 1 2
f2 [j] 12 16 22 25 30 37 l2 [j] 1 2 1 2 2
I f ∗ = 38 and l ∗ = 1