Integer Linear Programming

Total Page:16

File Type:pdf, Size:1020Kb

Integer Linear Programming Introduction Linear Programming Integer Programming Integer Linear Programming Subhas C. Nandy ([email protected]) Advanced Computing and Microelectronics Unit Indian Statistical Institute Kolkata 700108, India. Introduction Linear Programming Integer Programming Organization 1 Introduction 2 Linear Programming 3 Integer Programming Introduction Linear Programming Integer Programming Linear Programming A technique for optimizing a linear objective function, subject to a set of linear equality and linear inequality constraints. Mathematically, maximize c1x1 + c2x2 + ::: + cnxn Subject to: a11x1 + a12x2 + ::: + a1nxn b1 ≤ a21x1 + a22x2 + ::: + a2nxn b2 : ≤ : am1x1 + am2x2 + ::: + amnxn bm ≤ xi 0 for all i = 1; 2;:::; n. ≥ Introduction Linear Programming Integer Programming Linear Programming In matrix notation, maximize C T X Subject to: AX B X ≤0 where C is a n≥ 1 vector |- cost vector, A is a m× n matrix |- coefficient matrix, B is a m × 1 vector |- requirement vector, and X is an n× 1 vector of unknowns. × He developed it during World War II as a way to plan expenditures and returns so as to reduce costs to the army and increase losses incurred by the enemy. The method was kept secret until 1947 when George B. Dantzig published the simplex method and John von Neumann developed the theory of duality as a linear optimization solution. Dantzig's original example was to find the best assignment of 70 people to 70 jobs subject to constraints. The computing power required to test all the permutations to select the best assignment is vast. However, the theory behind linear programming drastically reduces the number of feasible solutions that must be checked for optimality. Introduction Linear Programming Integer Programming History The linear programming method was first developed by Leonid Kantorovich in 1937. The method was kept secret until 1947 when George B. Dantzig published the simplex method and John von Neumann developed the theory of duality as a linear optimization solution. Dantzig's original example was to find the best assignment of 70 people to 70 jobs subject to constraints. The computing power required to test all the permutations to select the best assignment is vast. However, the theory behind linear programming drastically reduces the number of feasible solutions that must be checked for optimality. Introduction Linear Programming Integer Programming History The linear programming method was first developed by Leonid Kantorovich in 1937. He developed it during World War II as a way to plan expenditures and returns so as to reduce costs to the army and increase losses incurred by the enemy. Dantzig's original example was to find the best assignment of 70 people to 70 jobs subject to constraints. The computing power required to test all the permutations to select the best assignment is vast. However, the theory behind linear programming drastically reduces the number of feasible solutions that must be checked for optimality. Introduction Linear Programming Integer Programming History The linear programming method was first developed by Leonid Kantorovich in 1937. He developed it during World War II as a way to plan expenditures and returns so as to reduce costs to the army and increase losses incurred by the enemy. The method was kept secret until 1947 when George B. Dantzig published the simplex method and John von Neumann developed the theory of duality as a linear optimization solution. The computing power required to test all the permutations to select the best assignment is vast. However, the theory behind linear programming drastically reduces the number of feasible solutions that must be checked for optimality. Introduction Linear Programming Integer Programming History The linear programming method was first developed by Leonid Kantorovich in 1937. He developed it during World War II as a way to plan expenditures and returns so as to reduce costs to the army and increase losses incurred by the enemy. The method was kept secret until 1947 when George B. Dantzig published the simplex method and John von Neumann developed the theory of duality as a linear optimization solution. Dantzig's original example was to find the best assignment of 70 people to 70 jobs subject to constraints. However, the theory behind linear programming drastically reduces the number of feasible solutions that must be checked for optimality. Introduction Linear Programming Integer Programming History The linear programming method was first developed by Leonid Kantorovich in 1937. He developed it during World War II as a way to plan expenditures and returns so as to reduce costs to the army and increase losses incurred by the enemy. The method was kept secret until 1947 when George B. Dantzig published the simplex method and John von Neumann developed the theory of duality as a linear optimization solution. Dantzig's original example was to find the best assignment of 70 people to 70 jobs subject to constraints. The computing power required to test all the permutations to select the best assignment is vast. Introduction Linear Programming Integer Programming History The linear programming method was first developed by Leonid Kantorovich in 1937. He developed it during World War II as a way to plan expenditures and returns so as to reduce costs to the army and increase losses incurred by the enemy. The method was kept secret until 1947 when George B. Dantzig published the simplex method and John von Neumann developed the theory of duality as a linear optimization solution. Dantzig's original example was to find the best assignment of 70 people to 70 jobs subject to constraints. The computing power required to test all the permutations to select the best assignment is vast. However, the theory behind linear programming drastically reduces the number of feasible solutions that must be checked for optimality. Introduction Linear Programming Integer Programming History Linear-programming problem was first shown to be solvable in polynomial time by Leonid Khachiyan in 1979. Major breakthrough - Narendra Karmarkar's method for solving LP (1984) using interior point method. Introduction Linear Programming Integer Programming An Example A farmer has a piece of farm land of area α square kilometers. Wanted to plant wheat and barley. The farmer has β unit of fertilizer and γ unit of pesticides in hand. (f1; p1): The amount of fertilizer and pesticides needed for wheat per square kilometer. (f2; p2): The amount of fertilizer and pesticides needed for barley per square kilometer. Profit of wheat and barley per square kilometer is c1 and c2 The objective: To decide x1; x2, the area where wheat and barley needs to be planted. In matrix form: Maximize x1 c1 c2 x2 Subject to 0 1 0 1 1 1 α x1 @ f1 f2 A @ β A ; and x1; x2 0: x2 ≤ ≥ p1 p2 γ Introduction Linear Programming Integer Programming The Problem Constraints: Objective function: f1x1 + f2x2 β ≤ c1x1 + c2x2 p1x1 + p2x2 γ ≤ x1 + x2 α, and x1; x2 0. ≤ ≥ Introduction Linear Programming Integer Programming The Problem Constraints: Objective function: f1x1 + f2x2 β ≤ c1x1 + c2x2 p1x1 + p2x2 γ ≤ x1 + x2 α, and x1; x2 0. ≤ ≥ In matrix form: Maximize x1 c1 c2 x2 Subject to 0 1 0 1 1 1 α x1 @ f1 f2 A @ β A ; and x1; x2 0: x2 ≤ ≥ p1 p2 γ Introduction Linear Programming Integer Programming Linear Integer Programming The Problem Objective Function: Maximize 8x1 + 11x2 + 6x3 + 4x4 Subject to: 5x1 + 7x2 + 4x3 + 3x4 14 ≤ 7x1 + 2x3 + x4 10 + ≤ xi Z for all i = 1; 2; 3; 4 2 Introduction Linear Programming Integer Programming Linear Integer Programming Types of integer programming problems Pure Integer Programming Problem: All variables are required to be integer. Mixed Integer Programming Problem: Some variables are restricted to be integers; the others can take any value. Binary Integer Programming Problem: All variables are restricted to be 0 or 1. Introduction Linear Programming Integer Programming Linear Integer Programming Linear Relaxation Objective Function: Maximize z = 8x1 + 11x2 + 6x3 + 4x4 Subject to: 5x1 + 7x2 + 4x3 + 3x4 14 ≤ xi 0; 1 for all i = 1; 2; 3; 4 Relax it to: 2 f g Objective Function: Maximize z = 8x1 + 11x2 + 6x3 + 4x4 Subject to: 5x1 + 7x2 + 4x3 + 3x4 14 ≤ xi [0; 1] for all i = 1; 2; 3; 4 2 Non-optimality Integrality relaxation: x1 = x2 = 1, x3 = 0:5, x4 = 0, and z = 22. Rounding x3 = 0: gives z = 19. Rounding x3 = 1: Infeasible. Optimal integer solution: x1 = 0, x2 = x3 = x4 = 1, and z = 21. Introduction Linear Programming Integer Programming Converting finite valued integer variables to binary Assume that xj can assume values in p1; p2;:::; pk . f g To convert it to binary integer programming 1 2 k Introduce variables yj ; yj ;::: yj 0; 1 , and 1 2 2 f g k Substitute xj with: p1yj + p2yj + ::: + pk yj in objective function and all the constraints, and 1 2 p Introduce a new constraint: yj + yj + ::: + yj = 1 Introduction Linear Programming Integer Programming Converting finite valued integer variables to binary Example Objective Function: Maximize z = 8x1 + 11x2 + 6x3 + 4x4 Subject to: 5x1 + 7x2 + 4x3 + 3x4 14 ≤ x1 1; 2; 3 and xj 0; 1 for all i = 2; 3; 4 2 f g 2 f g 1 2 3 Converted Problem: substituting x1 = 1y1 + 2y1 + 3y1 1 2 3 Objective Function:Max z = 8y1 + 16y1 + 24y1 + 11x2 + 6x3 + 4x4 1 2 3 Subject to: 5y1 + 10y1 + 15y1 + 7x2 + 4x3 + 3x4 14 1 2 3 ≤ y1 + y1 + y1 = 1 1 2 3 y ; y ; y 0; 1 and xj 0; 1 for all i = 2; 3; 4 1 1 1 2 f g 2 f g 1 2 3 Solution: y1 = 0, y1 = 1, y1 = 0, x2 = 0, x3 = 1, x4 = 0, and z = 22. Implying: x1 = 2, x2 = 0, x3 = 1, x4 = 0, and z = 22. Introduction Linear Programming Integer Programming Applications of ILP Vertex Cover Problem Given a graph G = (V ; E), find a subset of vertices U V such that each edge in E is incident to at least one vertex in⊆U.
Recommended publications
  • A Branch-And-Price Approach with Milp Formulation to Modularity Density Maximization on Graphs
    A BRANCH-AND-PRICE APPROACH WITH MILP FORMULATION TO MODULARITY DENSITY MAXIMIZATION ON GRAPHS KEISUKE SATO Signalling and Transport Information Technology Division, Railway Technical Research Institute. 2-8-38 Hikari-cho, Kokubunji-shi, Tokyo 185-8540, Japan YOICHI IZUNAGA Information Systems Research Division, The Institute of Behavioral Sciences. 2-9 Ichigayahonmura-cho, Shinjyuku-ku, Tokyo 162-0845, Japan Abstract. For clustering of an undirected graph, this paper presents an exact algorithm for the maximization of modularity density, a more complicated criterion to overcome drawbacks of the well-known modularity. The problem can be interpreted as the set-partitioning problem, which reminds us of its integer linear programming (ILP) formulation. We provide a branch-and-price framework for solving this ILP, or column generation combined with branch-and-bound. Above all, we formulate the column gen- eration subproblem to be solved repeatedly as a simpler mixed integer linear programming (MILP) problem. Acceleration tech- niques called the set-packing relaxation and the multiple-cutting- planes-at-a-time combined with the MILP formulation enable us to optimize the modularity density for famous test instances in- cluding ones with over 100 vertices in around four minutes by a PC. Our solution method is deterministic and the computation time is not affected by any stochastic behavior. For one of them, column generation at the root node of the branch-and-bound tree arXiv:1705.02961v3 [cs.SI] 27 Jun 2017 provides a fractional upper bound solution and our algorithm finds an integral optimal solution after branching. E-mail addresses: (Keisuke Sato) [email protected], (Yoichi Izunaga) [email protected].
    [Show full text]
  • Linear Programming Notes X: Integer Programming
    Linear Programming Notes X: Integer Programming 1 Introduction By now you are familiar with the standard linear programming problem. The assumption that choice variables are infinitely divisible (can be any real number) is unrealistic in many settings. When we asked how many chairs and tables should the profit-maximizing carpenter make, it did not make sense to come up with an answer like “three and one half chairs.” Maybe the carpenter is talented enough to make half a chair (using half the resources needed to make the entire chair), but probably she wouldn’t be able to sell half a chair for half the price of a whole chair. So, sometimes it makes sense to add to a problem the additional constraint that some (or all) of the variables must take on integer values. This leads to the basic formulation. Given c = (c1, . , cn), b = (b1, . , bm), A a matrix with m rows and n columns (and entry aij in row i and column j), and I a subset of {1, . , n}, find x = (x1, . , xn) max c · x subject to Ax ≤ b, x ≥ 0, xj is an integer whenever j ∈ I. (1) What is new? The set I and the constraint that xj is an integer when j ∈ I. Everything else is like a standard linear programming problem. I is the set of components of x that must take on integer values. If I is empty, then the integer programming problem is a linear programming problem. If I is not empty but does not include all of {1, . , n}, then sometimes the problem is called a mixed integer programming problem.
    [Show full text]
  • IEOR 269, Spring 2010 Integer Programming and Combinatorial Optimization
    IEOR 269, Spring 2010 Integer Programming and Combinatorial Optimization Professor Dorit S. Hochbaum Contents 1 Introduction 1 2 Formulation of some ILP 2 2.1 0-1 knapsack problem . 2 2.2 Assignment problem . 2 3 Non-linear Objective functions 4 3.1 Production problem with set-up costs . 4 3.2 Piecewise linear cost function . 5 3.3 Piecewise linear convex cost function . 6 3.4 Disjunctive constraints . 7 4 Some famous combinatorial problems 7 4.1 Max clique problem . 7 4.2 SAT (satisfiability) . 7 4.3 Vertex cover problem . 7 5 General optimization 8 6 Neighborhood 8 6.1 Exact neighborhood . 8 7 Complexity of algorithms 9 7.1 Finding the maximum element . 9 7.2 0-1 knapsack . 9 7.3 Linear systems . 10 7.4 Linear Programming . 11 8 Some interesting IP formulations 12 8.1 The fixed cost plant location problem . 12 8.2 Minimum/maximum spanning tree (MST) . 12 9 The Minimum Spanning Tree (MST) Problem 13 i IEOR269 notes, Prof. Hochbaum, 2010 ii 10 General Matching Problem 14 10.1 Maximum Matching Problem in Bipartite Graphs . 14 10.2 Maximum Matching Problem in Non-Bipartite Graphs . 15 10.3 Constraint Matrix Analysis for Matching Problems . 16 11 Traveling Salesperson Problem (TSP) 17 11.1 IP Formulation for TSP . 17 12 Discussion of LP-Formulation for MST 18 13 Branch-and-Bound 20 13.1 The Branch-and-Bound technique . 20 13.2 Other Branch-and-Bound techniques . 22 14 Basic graph definitions 23 15 Complexity analysis 24 15.1 Measuring quality of an algorithm .
    [Show full text]
  • A Branch-And-Bound Algorithm for Zero-One Mixed Integer
    A BRANCH-AND-BOUND ALGORITHM FOR ZERO- ONE MIXED INTEGER PROGRAMMING PROBLEMS Ronald E. Davis Stanford University, Stanford, California David A. Kendrick University of Texas, Austin, Texas and Martin Weitzman Yale University, New Haven, Connecticut (Received August 7, 1969) This paper presents the results of experimentation on the development of an efficient branch-and-bound algorithm for the solution of zero-one linear mixed integer programming problems. An implicit enumeration is em- ployed using bounds that are obtained from the fractional variables in the associated linear programming problem. The principal mathematical result used in obtaining these bounds is the piecewise linear convexity of the criterion function with respect to changes of a single variable in the interval [0, 11. A comparison with the computational experience obtained with several other algorithms on a number of problems is included. MANY IMPORTANT practical problems of optimization in manage- ment, economics, and engineering can be posed as so-called 'zero- one mixed integer problems,' i.e., as linear programming problems in which a subset of the variables is constrained to take on only the values zero or one. When indivisibilities, economies of scale, or combinatoric constraints are present, formulation in the mixed-integer mode seems natural. Such problems arise frequently in the contexts of industrial scheduling, investment planning, and regional location, but they are by no means limited to these areas. Unfortunately, at the present time the performance of most compre- hensive algorithms on this class of problems has been disappointing. This study was undertaken in hopes of devising a more satisfactory approach. In this effort we have drawn on the computational experience of, and the concepts employed in, the LAND AND DoIGE161 Healy,[13] and DRIEBEEKt' I algorithms.
    [Show full text]
  • Matroid Partitioning Algorithm Described in the Paper Here with Ray’S Interest in Doing Ev- Erything Possible by Using Network flow Methods
    Chapter 7 Matroid Partition Jack Edmonds Introduction by Jack Edmonds This article, “Matroid Partition”, which first appeared in the book edited by George Dantzig and Pete Veinott, is important to me for many reasons: First for per- sonal memories of my mentors, Alan J. Goldman, George Dantzig, and Al Tucker. Second, for memories of close friends, as well as mentors, Al Lehman, Ray Fulker- son, and Alan Hoffman. Third, for memories of Pete Veinott, who, many years after he invited and published the present paper, became a closest friend. And, finally, for memories of how my mixed-blessing obsession with good characterizations and good algorithms developed. Alan Goldman was my boss at the National Bureau of Standards in Washington, D.C., now the National Institutes of Science and Technology, in the suburbs. He meticulously vetted all of my math including this paper, and I would not have been a math researcher at all if he had not encouraged it when I was a university drop-out trying to support a baby and stay-at-home teenage wife. His mentor at Princeton, Al Tucker, through him of course, invited me with my child and wife to be one of the three junior participants in a 1963 Summer of Combinatorics at the Rand Corporation in California, across the road from Muscle Beach. The Bureau chiefs would not approve this so I quit my job at the Bureau so that I could attend. At the end of the summer Alan hired me back with a big raise. Dantzig was and still is the only historically towering person I have known.
    [Show full text]
  • Introduction to Approximation Algorithms
    CSC 373 - Algorithm Design, Analysis, and Complexity Summer 2016 Lalla Mouatadid Introduction to Approximation Algorithms The focus of these last two weeks of class will be on how to deal with NP-hard problems. If we don't know how to solve them, what would be the first intuitive way to tackle them? One well studied method is approximation algorithms; algorithms that run in polynomial time that can approximate the solution within a constant factor of the optimal solution. How well can we approximate these solutions? And can we approximate all NP-hard problems? Before we try to answer any of these questions, let's formally define what we mean by approximating a solution. Notice first that if we're considering how \good" a solution is, then we must be dealing with opti- mization problems, instead of decision problems. Recall that when dealing with an optimization problem, the goal is minimize or maximize some objective function. For instance, maximizing the size of an indepen- dent set or minimizing the size of a vertex cover. Since these problems are NP-hard, we focus on polynomial time algorithms that give us an approximate solution. More formally: Let P be an optimization problem.For every input x of P , let OP T (x) denote the optimal value of the solution for x. Let A be an algorithm and c a constant such that c ≥ 1. 1. Suppose P is a minimization problem. We say that A is a c-approximation for P if for every input x of P : OP T (x) ≤ A(x) ≤ c · OP T (x) 2.
    [Show full text]
  • Generic Branch-Cut-And-Price
    Generic Branch-Cut-and-Price Diplomarbeit bei PD Dr. M. L¨ubbecke vorgelegt von Gerald Gamrath 1 Fachbereich Mathematik der Technischen Universit¨atBerlin Berlin, 16. M¨arz2010 1Konrad-Zuse-Zentrum f¨urInformationstechnik Berlin, [email protected] 2 Contents Acknowledgments iii 1 Introduction 1 1.1 Definitions . .3 1.2 A Brief History of Branch-and-Price . .6 2 Dantzig-Wolfe Decomposition for MIPs 9 2.1 The Convexification Approach . 11 2.2 The Discretization Approach . 13 2.3 Quality of the Relaxation . 21 3 Extending SCIP to a Generic Branch-Cut-and-Price Solver 25 3.1 SCIP|a MIP Solver . 25 3.2 GCG|a Generic Branch-Cut-and-Price Solver . 27 3.3 Computational Environment . 35 4 Solving the Master Problem 39 4.1 Basics in Column Generation . 39 4.1.1 Reduced Cost Pricing . 42 4.1.2 Farkas Pricing . 43 4.1.3 Finiteness and Correctness . 44 4.2 Solving the Dantzig-Wolfe Master Problem . 45 4.3 Implementation Details . 48 4.3.1 Farkas Pricing . 49 4.3.2 Reduced Cost Pricing . 52 4.3.3 Making Use of Bounds . 54 4.4 Computational Results . 58 4.4.1 Farkas Pricing . 59 4.4.2 Reduced Cost Pricing . 65 5 Branching 71 5.1 Branching on Original Variables . 73 5.2 Branching on Variables of the Extended Problem . 77 5.3 Branching on Aggregated Variables . 78 5.4 Ryan and Foster Branching . 79 i ii Contents 5.5 Other Branching Rules . 82 5.6 Implementation Details . 85 5.6.1 Branching on Original Variables . 87 5.6.2 Ryan and Foster Branching .
    [Show full text]
  • Lecture 11: Integer Programming and Branch and Bound 1.12.2010 Lecturer: Prof
    Optimization Methods in Finance (EPFL, Fall 2010) Lecture 11: Integer programming and Branch and Bound 1.12.2010 Lecturer: Prof. Friedrich Eisenbrand Scribe: Boris Oumow 1 Integer Programming Definition 1. An integer program (IP) is a problem of the form: maxcT x s.t. Ax b x 2 Zn If we drop the last constraint x 2 Zn, the linear program obtained is called the LP-relaxation of (IP). Example 2 (Combinatorial auctions). A combinatorial auction is a type of smart market in which participants can place bids on combinations of discrete items, or “packages”, rather than just in- dividual items or continuous quantities. In many auctions, the value that a bidder has for a set of items may not be the sum of the values that he has for individual items. It may be more or it may be less. In other words, let M = f1;:::;mg be the set of items that the auctioneer has to sell. A bid is a pair B j = (S j; p j) where S j M is a nonempty subset of the items and p j is the price for this set. We suppose that the auctioneer has received n items B j, j = 1;:::;n. Question: How should the auctioneer determine the winners and the loosers of bidding in order to maximize his revenue? In lecture 10, we have seen a numerical example of this problem. Let’s see now its generaliza- tion. The (IP) for this problem is: n max∑ j=1 p jx j s.t. Ax 1 0 x 1 x 2 Zn where A 2 f0;1gm¢n is the matrix defined by ( 1 if i 2 S j Ai j = 0 otherwise 1 L.A Pittsburgh Boston Houston West 60 120 180 180 Midwest 48 24 60 60 East 216 180 72 180 South 126 90 108 54 Table 1: Lost interest in thousand of $ per year.
    [Show full text]
  • An Efficient Solution Methodology for Mixed-Integer Programming Problems Arising in Power Systems" (2016)
    University of Connecticut OpenCommons@UConn Doctoral Dissertations University of Connecticut Graduate School 12-15-2016 An Efficient Solution Methodology for Mixed- Integer Programming Problems Arising in Power Systems Mikhail Bragin University of Connecticut - Storrs, [email protected] Follow this and additional works at: https://opencommons.uconn.edu/dissertations Recommended Citation Bragin, Mikhail, "An Efficient Solution Methodology for Mixed-Integer Programming Problems Arising in Power Systems" (2016). Doctoral Dissertations. 1318. https://opencommons.uconn.edu/dissertations/1318 An Efficient Solution Methodology for Mixed-Integer Programming Problems Arising in Power Systems Mikhail Bragin, PhD University of Connecticut, 2016 For many important mixed-integer programming (MIP) problems, the goal is to obtain near- optimal solutions with quantifiable quality in a computationally efficient manner (within, e.g., 5, 10 or 20 minutes). A traditional method to solve such problems has been Lagrangian relaxation, but the method suffers from zigzagging of multipliers and slow convergence. When solving mixed-integer linear programming (MILP) problems, the recently adopted branch-and-cut may also suffer from slow convergence because when the convex hull of the problems has complicated facial structures, facet- defining cuts are typically difficult to obtain, and the method relies mostly on time-consuming branching operations. In this thesis, the novel Surrogate Lagrangian Relaxation method is developed and its convergence is proved to the optimal multipliers, without the knowledge of the optimal dual value and without fully optimizing the relaxed problem. Moreover, for practical implementations a stepsizing formula, that guarantees convergence without requiring the optimal dual value, has been constructively developed. The key idea is to select stepsizes in a way that distances between Lagrange multipliers at consecutive iterations decrease, and as a result, Lagrange multipliers converge to a unique limit.
    [Show full text]
  • Matroid Intersection and Its Application to a Multiple Depot, Multiple TSP
    Institute of Transportation Studies University of California at Berkeley Matroid Intersection and its application to a Multiple Depot, Multiple TSP Sivakumar Rathinam and Raja Sengupta RESEARCH REPORT UCB-ITS-RR-2006-3 May 2006 ISSN 0192 4095 1 Matroid Intersection and its application to a Multiple Depot, Multiple TSP Sivakumar Rathinam1, Raja Sengupta2 Abstract This paper extends the Held-Karp’s lower bound available for a single Travelling Salesman Problem to the following symmetric Multiple Depot, Multiple Travelling Salesman Problem (MDMTSP): Given k salesman that start at different depots, k terminals and n destinations, the problem is to choose paths for each of the salesmen so that (1) each vehicle starts at its respective depot, visits atleast one destination and reaches any one of the terminals not visited by other vehicles, (2) each destination is visited by exactly one vehicle and (3) the cost of the paths is a minimum among all possible paths for the salesmen. The criteria for the cost of paths considered is the total cost of the edges travelled by the entire collection. This MDMTSP is formulated as a minimum cost constrained forest problem subject to side constraints. By perturbing the costs of each edge from Cij to Cij := Cij +πi +πj, one obtains an infinite family of lower bounds, denoted by w(π), for the MDMTSP. Each lower bound, w(π), involves calculating a minimum cost constrained forest. The minimum cost constrained forest problem is posed as a weighted two matroid intersection problem and hence can be solved in polynomial time. Since the polyhedra corresponding to the matroid intersection problem has the integrality property, it follows that the optimal cost corresponding to the LP relaxation of the MDMTSP is actually equal to maxπ w(π).
    [Show full text]
  • Matrices of Optimal Tree-Depth and Row-Invariant Parameterized Algorithm for Integer Programming Timothy F
    Matrices of Optimal Tree-Depth and Row-Invariant Parameterized Algorithm for Integer Programming Timothy F. N. Chan School of Mathematical Sciences, Monash University, Melbourne, Australia Mathematics Institute and DIMAP, University of Warwick, Coventry, UK [email protected] Jacob W. Cooper Faculty of Informatics, Masaryk University, Brno, Czech Republic [email protected] Martin Koutecký Computer Science Institute, Charles University, Prague, Czech Republic [email protected]ff.cuni.cz Daniel Král’ Faculty of Informatics, Masaryk University, Brno, Czech Republic Mathematics Institute, DIMAP and Department of Computer Science, University of Warwick, Coventry, UK dkral@fi.muni.cz Kristýna Pekárková Faculty of Informatics, Masaryk University, Brno, Czech Republic [email protected] Abstract A long line of research on fixed parameter tractability of integer programming culminated with showing that integer programs with n variables and a constraint matrix with tree-depth d and largest entry ∆ are solvable in time g(d, ∆)poly(n) for some function g, i.e., fixed parameter tractable when parameterized by tree-depth d and ∆. However, the tree-depth of a constraint matrix depends on the positions of its non-zero entries and thus does not reflect its geometric structure. In particular, tree-depth of a constraint matrix is not preserved by row operations, i.e., a given integer program can be equivalent to another with a smaller dual tree-depth. We prove that the branch-depth of the matroid defined by the columns of the constraint matrix is equal to the minimum tree-depth of a row-equivalent matrix. We also design a fixed parameter algorithm parameterized by an integer d and the entry complexity of an input matrix that either outputs a matrix with the smallest dual tree-depth that is row-equivalent to the input matrix or outputs that there is no matrix with dual tree-depth at most d that is row-equivalent to the input matrix.
    [Show full text]
  • On Approximation Algorithms for Concave Mixed-Integer Quadratic Programming
    On Approximation Algorithms for Concave Mixed-Integer Quadratic Programming Alberto Del Pia ∗ July 20, 2017 Abstract Concave Mixed-Integer Quadratic Programming is the problem of minimizing a concave quadratic polynomial over the mixed-integer points in a polyhedral region. In this work we describe an algorithm that finds an ǫ-approximate solution to a Concave Mixed-Integer Quadratic Programming problem. The running time of the proposed algorithm is polynomial in the size of the problem and in 1/ǫ, provided that the number of integer variables and the number of negative eigenvalues of the objective function are fixed. The running time of the proposed algorithm is expected unless P = NP. Key words: mixed-integer quadratic programming; approximation algorithms 1 Introduction Mixed-Integer Quadratic Programming (MIQP) problems are optimization problems in which the objective function is a quadratic polynomial, the constraints are linear inequalities, and some of the variables are required to be integers: ⊤ ⊤ minimize x Hx + h x subject to W x ≥ w (1) − x ∈ Zp × Rn p. In this formulation, H is symmetric, and all the data is rational. Concave MIQP is the special case of MIQP when the objective is concave, which occurs when H is negative semidefinite. Concave quadratic cost functions are frequently encountered in real-world problems concerning economies of scale, which corresponds to the economic phenomenon of “decreasing marginal cost” (see [13, 28]). Concave MIQP is strongly NP- complete [29, 14, 12] and it is still NP-hard in very restricted settings such as the problem to minimize n ⊤ 2 n i=1(wi x) over x ∈{0, 1} [24], or when the concave quadratic objective has only one negative eigenvalue [27].
    [Show full text]