solving linear and integer programs
play

Solving Linear and Integer Programs Robert E. Bixby ILOG, Inc. - PowerPoint PPT Presentation

Solving Linear and Integer Programs Robert E. Bixby ILOG, Inc. and Rice University Dual Simplex Algorithm 2 Some Motivation Dual simplex vs. primal: Dual > 2x faster Best algorithm of MIP There isnt much in books about


  1. Solving Linear and Integer Programs Robert E. Bixby ILOG, Inc. and Rice University

  2. Dual Simplex Algorithm 2

  3. Some Motivation � Dual simplex vs. primal: Dual > 2x faster � Best algorithm of MIP � There isn’t much in books about implementing the dual. 3

  4. Dual Simplex Algorithm (Lemke, 1954: Commercial codes ~1990) Input: A dual feasible basis B and vectors X B = A B -1 b and D N = c N – A N T B -T c B . � Step 1: (Pricing) If X B ≥ 0 , stop, B is optimal; else let i = argmin{X Bk : k ∈ {1,…,m}}. � Step 2: (BTRAN) Solve B T z = e i . Compute α N =-A N T z . � Step 3: (Ratio test) If α N ≤ 0 , stop, (D) is unbounded; else, let j = argmin{D k / α k : α k > 0}. � Step 4: (FTRAN) Solve A B y = A j . � Step 5: (Update) Set B i =j . Update X B (using y ) and D N (using α N ) 4

  5. Dual Simplex Algorithm (Lemke, 1954: Commercial codes ~1990) Input: A dual feasible basis B and vectors X B = A B -1 b and D N = c N – A N T A B -T c B . � Step 1: (Pricing) If X B ≥ 0 , stop, B is optimal; else let i = argmin{X Bk : k ∈ {1,…,m}}. � Step 2: (BTRAN) Solve B T z = e i . Compute α N =-A N T z . � Step 3: (Ratio test) If α N ≤ 0 , stop, (D) is unbounded; else, let j = argmin{D k / α k : α k > 0}. � Step 4: (FTRAN) Solve A B y = A j . � Step 5: (Update) Set B i =j . Update X B (using y ) and D N (using α N ) 5

  6. Implementing the Dual Simplex Algorithm 6

  7. Implementation Issues for Dual Simplex Finding an initial feasible basis, or the concluding 1. that there is none: Phase I of simplex algorithm. Pricing: Dual steepest edge 2. Solving the linear systems 3. � LU factorization and factorization update � BTRAN and FTRAN – exploiting sparsity Numerically stable ratio test: Bound shifting and 4. perturbation Bound flipping: Exploiting “boxed” variables to 5. combine many iterations into one. 7

  8. Issue 0 Preparation: Bounds on Variables In practice, simplex algorithms need to accept LPs in the following form: Minimize c T x (P BD ) Subject to Ax = b l ≤ x ≤ u where l is an n-vector of lower bounds and u an n-vector of upper bounds . l is allowed to have - ∞ entries and u is allowed to have + ∞ entries. (Note that (P BD ) is in standard form if l j = 0, u j = + ∞ ∀ j .) 8

  9. (Issue 0 – Bounds on variables) Basic Solution A basis for (P BD ) is a triple (B,L,U) where B is an ordered m- element subset of {1,…,n} (just as before), (B,L,U) is a partition of {1,…,n}, l j > - ∞ ∀ j ∈ L , and u j < + ∞ ∀ j ∈ U . N = L ∪ U is the set of nonbasic variables. The associated ( primal ) basic solution X is given by X L = l L , X U = u U and -1 (b – A L l L – A U u U ). X B = A B This solution is feasible if l B ≤ X B ≤ u B . The associated dual basic solution is defined exactly as before: D B =0, Π T A B = c B T Π . It is dual feasible if T , D N = c N – A N D L ≥ 0 and D U ≤ 0. 9

  10. (Issue 0 – Bounds on variables) The Full Story � Modify simplex algorithm � Only the “Pricing” and “Ratio Test” steps must be changed substantially. � The complicated part is the ratio test � Reference: See Chvátal for the primal 10

  11. Issue 1 The Initial Feasible Basis – Phase I � Two parts to the solution Finding some initial basis (probably not feasible) 1. Modified simplex algorithm to find a feasible basis 2. Reference for Primal: R.E. Bixby (1992). “Implementing the simplex method: the initial basis”, ORSA Journal on Computing 4 , 267—284. 11

  12. (Issue 1 – Initial feasible basis) Initial Basis � Primal and dual bases are the same. We begin in the context of the primal. Consider Minimize c T x (P BD ) Subject to Ax = b l ≤ x ≤ u � Assumption: Every variable has some finite bound . � Trick: Add artificial variables x n+1 ,…,x n+m : x n+1 . Ax + I = b . x n+m where l j = u j = 0 for j = n+1,…,n+m . � Initial basis: B = (n+1,…,n+m) and for each j ∉ B , pick some finite bound and place j in L or U , as appropriate. � Free Variable Refinement: Make free variables non-basic at value 0. This leads to a notion of a superbasis , where non-basic variables can be between their bounds. 12

  13. (Issue 1 – Initial feasible basis) Solving the Phase I � If the initial basis is not dual feasible, we consider the problem: Maximize Σ (d j : d j < 0) Subject to A T π + d = c � This problem is “locally linear”: Define κ ∈ R n by κ j = 1 if D j < 0 , and 0 otherwise. Let K = {j: D j < 0} and K = {j: D j ≥ 0} Then our problem becomes Maximize κ T d Subject to A T π + d = c d K ≤ 0, d K ≥ 0 � Apply dual simplex, and whenever d j for j ∈ K becomes 0 , move it to K . 13

  14. Solving Phase I: An Interesting Computation � Suppose d Bi is the entering variable. Then X Bi < 0 where X B is obtained using the following formula: -1 A N κ X B = A B � Suppose now that d j is determined to be the leaving variable. Then in terms of the phase I objective, this means κ j is replace by κ j + ε e j , where ε ∈ {0,+1,-1} . It can then be shown that x Bi = X Bi + ε α j � Conclusion: If x Bi < 0 , then the current iteration can continue without the necessity of changing the basis. � Advantages � Multiple iterations are combined into one. � x Bi will tend not to change sign precisely when α j is small. Thus this procedure tends to avoid unstable pivots. 14

  15. Issue 2 Pricing � The texbook rule is TERRIBLE : For a problem in standard form, select the entering variable using the formula j = argmin{X Bi : i = 1,…,m} � Geometry is wrong: Maximizes rate of change relative to axis; better to do relative to edge. � Goldfard and Forrest 1992 suggested the following steepest-edge alternative j = argmin{X Bi / η i : i = 1,…,m} T A B -1 || 2 , and gave an efficient update. where η i = ||e i � Note that there are two ingredients in the success of Dual SE: � Significantly reduced iteration counts � The fact that there is a very efficient update for η i s 15

  16. Example: Pricing Model: dfl001 Pricing: Greatest infeasibility Dual simplex - Optimal: Objective = 1.1266396047e+07 Solution time = 1339.86 sec. Iterations = 771647 (0) Pricing: Goldfarb-Forrest steepest-edge Dual simplex - Optimal: Objective = 1.1266396047e+07 Solution time = 24.48 sec. Iterations = 18898 (0) 16

  17. Issue 3 Solving FTRAN, BTRAN � Computing LU factorization: See Suhl & Suhl (1990). “Computing sparse LU factorization for large- scale linear programming basis”, ORSA Journal on Computing 2, 325-335. � Updating the Factorization: Forrest-Tomlin update is the method of choice. See Chvátal Chapter 24. � There are multiple, individually relatively minor tweaks that collectively have a significant effect on update efficiency. � Further exploiting sparsity: This is the main recent development. 17

  18. (Issue 3 – Solving FTRAN & BTRAN) We must solve two linear systems per iteration: FTRAN BTRAN T z = e i A B y = A j A B where A B = basis matrix (very sparse) A j = entering column (very sparse) e i = unit vector (very sparse) ⇒ y an z are typically very sparse Model pla85900 (from TSP) Example: Constraints 85900 Variables 144185 Average |y| 15.5 18

  19. U A B = L Triangular solve: Lw=A j (A B y = L(Uy) = A j ) w × Known in advance update × × = update × × Need to find A j L w w/o searching Graph structure: Define an acyclic digraph D = ({1,…,m}, E) where (i,j) ∈ E ⇔ l ij ≠ 0 and i ≠ j . Solving using D : Let X = {i ∈ V: A ij ≠ 0}. Compute X = {j ∈ V: ∃ a directed path from j to X }. X can be computed in time linear in |E(X)|+|X|. 19

  20. PDS Models “Patient Distribution System”: Carolan, Hill, Kennington, Niemi, Wichmann, An empirical evaluation of the KORBX algorithms for military airlift applications , Operations Research 38 (1990), pp. 240-248 CPLEX1.0 CPLEX5.0 CPLEX8.0 SPEEDUP 1.0 � 8.0 MODEL ROWS 1988 1997 2002 pds02 2953 0.4 0.1 0.1 4.0 pds06 9881 26.4 2.4 0.9 29.3 pds10 16558 208.9 13.0 2.6 80.3 pds20 33874 5268.8 232.6 20.9 247.3 pds30 49944 15891.9 1154.9 39.1 406.4 pds40 66844 58920.3 2816.8 79.3 743.0 pds50 83060 122195.9 8510.9 114.6 1066.3 pds60 99431 205798.3 7442.6 160.5 1282.2 pds70 114944 335292.1 21120.4 197.8 1695.1 Primal Dual Dual Simplex Simplex Simplex 20

  21. Not just faster -- Growth with size: Quadratic then & Linear now ! 400000.00 250.00 350000.00 200.00 300000.00 CPLEX 1.0 seconds CPLEX 8.0 seconds 250000.00 150.00 200000.00 100.00 150000.00 100000.00 50.00 50000.00 .00 .00 .00 10.00 20.00 30.00 40.00 50.00 60.00 70.00 80.00 # Time Periods: PDS02 -- PDS70 21

  22. Issue 4 Ratio Test and Finiteness The “standard form” dual problem is Maximize b T π Subject to A T π + d = c d ≥ 0 Feasibility means d ≥ 0 However, in practice this condition is replaced by d ≥ - ε e where e T =(1,…,1) and ε =10 -6 . Reason: Degeneracy. In 1972 Paula Harris proposed suggested exploiting this fact to improve numerical stability. 22

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend