1 / 20

296.3:Algorithms in the Real World

296.3:Algorithms in the Real World. Linear and Integer Programming IV Case Study: Airline Crew Scheduling. American Airlines. Problem : Schedule crew (pilots and flight attendants) on flight segments to minimize cost. over 25,000 pilots and flight attendants

annick
Download Presentation

296.3:Algorithms in the Real World

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. 296.3:Algorithms in the Real World Linear and Integer Programming IV Case Study: Airline Crew Scheduling 296.3

  2. American Airlines • Problem: Schedule crew (pilots and flight attendants) on flight segments to minimize cost. • over 25,000 pilots and flight attendants • over $1.5 Billion/year in crew costs • Assumes the flight segments are already fixed. • Methods described today: • 1970-1992: TRIP (Trip Reevaluation and Improvement Program). Local optimization given an initial guess • 1992-present? Global optimization (approximate) 296.3

  3. Algorithms in the Real World • Editor’s note from a recent paper: “A crew resource planning manager at the subject company confirmed to me that the work described in this paper has been in regular operational use since its completion, that it has been used to support labor negotiations, and that while its benefits have not been quantified, the system is an improvement over the prior system and is working well. For commercial reasons, the subject company wants to remain anonymous. 296.3

  4. Crew Pairings • Example: A 2 day crew pairing with DFW (Dallas-Fort Worth) as the base. Duty period 1 Sign in: 8:00 DFW 9:00-10:00 AUS (segment 1) AUS 11:00-13:00 ORD (segment 2) ORD 14:00-15:00 SFO (segment 3) Overnight in SFO Duty period 2 Sign in: 7:00 SFO 8:00-9:00 LAX (segment 4) LAX 10:00-11:45 SAN (segment 5) SAN 13:00-19:30 DFW (segment 6) Sign out: 19:45 296.3

  5. Properties of Pairings • National pairings typically last 2 or 3 days. • Crew work 4 or 5 pairings per month. • Collection of pairings in a month is a Bidline. • Recent work has considered optimizing the bidlines. Today we will just discuss pairings. • Crew “bid” on the bidlines (seniority based) 296.3

  6. Constraints on Pairings • Union and Federal Aviation Agency (FAA) rules • Some example constraints • 8 hours flying per duty period • 12 hours total duty time • Minimum layover time – depends on hours of flying in previous duty period • Minimum time between flights in a duty period 296.3

  7. Cost of Pairings • Cost can include both direct and indirect costs (e.g. employee satisfaction). • Example contributions to “cost”. • Total duty period time • Time away from base (TAFB) • Number and locations of overlays • Number of time zone changes • Cost of changing planes 296.3

  8. Overall Goal • Cover all segments with a set of valid pairings that minimize costs. • Must also consider number of crew available at crew bases. • Crew pairings (as well as flight schedules) are generated on a monthly basis. • Problem is simplified since flights are pretty much the same every day. The monthly boundaries can cause some problems. 296.3

  9. Possible Approach • Consider all valid pairings and generate cost for each. • Now solve as a set covering problem: Given m sets and n items: Problem: Billions of possible pairings 296.3

  10. Example Formulation • Segments to be covered: • DFW 9-12 LGA • LGA 13-15 ORD • ORD 16-18 RDU • ORD 17-19 DFW • RDU 19-21 LGA • RDU 19-21 DFW • LGA 14-16 ORD • DFW 16-18 RDU • Pairings: • DFW 9-12 LGA 14-16 ORD 17-19 DFW (1,7,4) • LGA 13-15 ORD 16-18 RDU 19-21 LGA (2,3,5) • ORD 16-18 RDU 19-21 DFW 9-12 LGA 13-15 ORD (3,6,1,2) • DFW 16-18 RDU 19-21 DFW (8,6) • DFW 16-18 RDU 19-21 LGA 14-16 ORD 17-19 DFW (8,5,7,4) 296.3

  11. Example Formulation (cont.) 296.3

  12. Old System, TRIP (->1992) • Select an initial solution (set of pairings)Typically a modification from previous month • Repeat the following until no more improvements: • Select small set of pairings from current solutionTypically 5-10 pairings from the same region • Generate all valid pairings that cover the same segments, and cost for eachTypically a few thousand • Optimize over these pairings using the set-partitioning problem. • Advantage: Small subproblems • Problem: Only does local optimization 296.3

  13. New System (?) • Anbil, Tanga, Johnson, 1992: • Generate large “pool” of pairings About 6 million. • Solve LP approximation using specialized techniques • Use “branch-and-bound” for IP solution, with heuristic pruning • Each LP takes about an hour (faster now) • Does not guarantee best solution because of the pruning step, but much better than TRIP. 296.3

  14. Generating the Pool of Pairings • Disclaimer: This is speculative since the authors say very little about it. • Generating 6 million initial pairings out of billions of possible pairings • Generate graph • Vertex: time and airport • Edge: flight-segment, wait-time, or overlay • Edge weight: “excess cost” of edge • Find 6 million shortest paths in the graph that start and end at a crew base • This is a heuristic that prefers short TAFB. 296.3

  15. Shortest Path Graph time • Each edge is given a weight based on approximate cost (full cost not known without rest of pairing) DFW LGA ORD RDU Day 1 Day 2 Day 3 296.3

  16. Solving the LP Approximation • Select a small set of m columns (pairings),to be basic variables. Call this submatrix A. m = 5000 • Repeat until optimal solution found • Optimize problem based on A • Use the basic variables to “price” the remaining variables and reset A to the m “best”(i.e., pick 5000 minimum reduced costsr = cbB-1N –cn) Like simplex algorithm, but swap up to m free variables for basic variables in each iteration. 296.3

  17. Using the LP for the IP • Algorithm: • Solve the LP approximation across 6 million columns • Select about 10K pairings with best reduced cost • Repeat until all segments have a follow on: • For all non-zero pairings, consider all adjacent segments (si,sj) in the itineraries • Add weights from the pairing that include them, and select maximum sum across all (si, sj). • Fix (si, sj) and throw out all pairings that include (si,sk), k ¹ j • Solve the LP again • Add new columns from original 6 million if system becomes infeasible 296.3

  18. Example: from before segments LP solution We therefore fix (2,3) : LGA 13-15 ORD 16-18 RDU and (7,4): LGA 14-16 ORD 17-19 DFW We don’t throw out any pairings since 2 and 7 are not followed by anything other than 3 and 4, respectively 296.3

  19. Additional Constraints • Need to account for the number of crew available at each base • Add constraints with maximum and minimum hours available from each base • Need to patch between months. • Separately schedule first two days of each month with additional constraints put in from previous month. • Handling cancelled or delayed flights. • Currently done by hand – every base has a small set of reserve crew. 296.3

  20. Some Conclusions • Use of special purpose techniques • Mostly separates the optimization from the cost and constraints rules. • Solves 6 million variable LP as a substep. • It is hard to get specifics on money saved (initial papers were much more forthcoming). 296.3

More Related