Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

Integer programming

From Wikipedia, the free encyclopedia
(Redirected fromInteger constraint)
Mathematical optimization problem restricted to integers

Aninteger programming problem is amathematical optimization orfeasibility program in which some or all of the variables are restricted to beintegers. In many settings the term refers tointegerlinear programming (ILP), in which theobjective function and the constraints (other than the integer constraints) arelinear.

Integer programming isNP-complete. In particular, the special case of 0–1 integer linear programming, in which unknowns are binary, and only the restrictions must be satisfied, is one ofKarp's 21 NP-complete problems.[1]

If some decision variables are not discrete, the problem is known as amixed-integer programming problem.[2]

Canonical and standard form for ILPs

[edit]

In integer linear programming, thecanonical form is distinct from thestandard form. An integer linear program in canonical form is expressed thus (note that it is thex{\displaystyle \mathbf {x} } vector which is to be decided):[3]

maximizexZncTxsubject toAxb,x0{\displaystyle {\begin{aligned}&{\underset {\mathbf {x} \in \mathbb {Z} ^{n}}{\text{maximize}}}&&\mathbf {c} ^{\mathrm {T} }\mathbf {x} \\&{\text{subject to}}&&A\mathbf {x} \leq \mathbf {b} ,\\&&&\mathbf {x} \geq \mathbf {0} \end{aligned}}}

and an ILP in standard form is expressed as

maximizexZncTxsubject toAx+s=b,s0,x0,{\displaystyle {\begin{aligned}&{\underset {\mathbf {x} \in \mathbb {Z} ^{n}}{\text{maximize}}}&&\mathbf {c} ^{\mathrm {T} }\mathbf {x} \\&{\text{subject to}}&&A\mathbf {x} +\mathbf {s} =\mathbf {b} ,\\&&&\mathbf {s} \geq \mathbf {0} ,\\&&&\mathbf {x} \geq \mathbf {0} ,\end{aligned}}}

wherecRn,bRm{\displaystyle \mathbf {c} \in \mathbb {R} ^{n},\mathbf {b} \in \mathbb {R} ^{m}} are vectors andARm×n{\displaystyle A\in \mathbb {R} ^{m\times n}} is a matrix. As with linear programs, ILPs not in standard form can beconverted to standard form by eliminating inequalities, introducing slack variables (s{\displaystyle \mathbf {s} }) and replacing variables that are not sign-constrained with the difference of two sign-constrained variables.

Example

[edit]
IP polytope with LP relaxation

The plot on the right shows the following problem.

maximizex,yZysubject tox+y13x+2y122x+3y12x,y0{\displaystyle {\begin{aligned}{\underset {x,y\in \mathbb {Z} }{\text{maximize}}}\quad &y\\{\text{subject to}}\quad &-x+y\leq 1\\&3x+2y\leq 12\\&2x+3y\leq 12\\&x,y\geq 0\end{aligned}}}

The feasible integer points are shown in red, and the red dashed lines indicate their convex hull, which is the smallest convex polyhedron that contains all of these points. The blue lines together with the coordinate axes define the polyhedron of the LP relaxation, which is given by the inequalities without the integrality constraint. The goal of the optimization is to move the black dashed line as far upward while still touching the polyhedron. The optimal solutions of the integer problem are the points(1,2){\displaystyle (1,2)} and(2,2){\displaystyle (2,2)} that both have an objective value of 2. The unique optimum of the relaxation is(1.8,2.8){\displaystyle (1.8,2.8)} with objective value of 2.8. If the solution of the relaxation is rounded to the nearest integers, it is not feasible for the ILP.

Proof of NP-hardness

[edit]

The following is a reduction from minimumvertex cover to integer programming that will serve as the proof of NP-hardness.

LetG=(V,E){\displaystyle G=(V,E)} be an undirected graph. Define a linear program as follows:

minvVyvyv+yu1u,vEyvZ+vV{\displaystyle {\begin{aligned}\min \sum _{v\in V}y_{v}\\y_{v}+y_{u}&\geq 1&&\forall u,v\in E\\y_{v}&\in \mathbb {Z^{+}} &&\forall v\in V\end{aligned}}}

Given that the constraints limityv{\displaystyle y_{v}} to either 0 or 1, any feasible solution to the integer program is a subset of vertices. The first constraint implies that at least one end point of every edge is included in this subset. Therefore, the solution describes a vertex cover. Additionally given some vertex cover C,yv{\displaystyle y_{v}} can be set to 1 for anyvC{\displaystyle v\in C} and to 0 for anyvC{\displaystyle v\not \in C} thus giving us a feasible solution to the integer program. Thus we can conclude that if we minimize the sum ofyv{\displaystyle y_{v}} we have also found the minimum vertex cover.[4]

Variants

[edit]

Mixed-integer linear programming (MILP) involves problems in which only some of the variables,xi{\displaystyle x_{i}}, are constrained to be integers, while other variables are allowed to be non-integers.

Zero–one linear programming (orbinary integer programming) involves problems in which the variables are restricted to be either 0 or 1. Any bounded integer variable can be expressed as a combination ofbinary variables.[5] For example, given an integer variable,0xU{\displaystyle 0\leq x\leq U}, the variable can be expressed usinglog2U+1{\displaystyle \lfloor \log _{2}U\rfloor +1} binary variables:

x=x1+2x2+4x3++2log2Uxlog2U+1.{\displaystyle x=x_{1}+2x_{2}+4x_{3}+\cdots +2^{\lfloor \log _{2}U\rfloor }x_{\lfloor \log _{2}U\rfloor +1}.}

Applications

[edit]

There are two main reasons for using integer variables when modeling problems as a linear program:

  1. The integer variables represent quantities that can only be integer. For example, it is not possible to build 3.7 cars.
  2. The integer variables represent decisions (e.g. whether to include an edge in agraph) and so should only take on the value 0 or 1.

These considerations occur frequently in practice and so integer linear programming can be used in many applications areas, some of which are briefly described below.

Production planning

[edit]

Mixed-integer programming has many applications in industrial productions, including job-shop modelling. One important example happens in agriculturalproduction planning and involves determining production yield for several crops that can share resources (e.g. land, labor, capital, seeds, fertilizer, etc.). A possible objective is to maximize the total production, without exceeding the available resources. In some cases, this can be expressed in terms of a linear program, but the variables must be constrained to be integer.

Scheduling

[edit]

These problems involve service and vehicle scheduling in transportation networks. For example, a problem may involve assigning buses or subways to individual routes so that a timetable can be met, and also to equip them with drivers. Here binary decision variables indicate whether a bus or subway is assigned to a route and whether a driver is assigned to a particular train or subway. The zero–one programming technique has been successfully applied to solve a project selection problem in which projects are mutually exclusive and/or technologically interdependent.

Territorial partitioning

[edit]

Territorial partitioning or districting problems consist of partitioning a geographical region into districts in order to plan some operations while considering different criteria or constraints. Some requirements for this problem are: contiguity, compactness, balance or equity, respect of natural boundaries, and socio-economic homogeneity. Some applications for this type of problem include: political districting, school districting, health services districting and waste management districting.

Telecommunications networks

[edit]

The goal of these problems is to design a network of lines to install so that a predefined set of communication requirements are met and the total cost of the network is minimal.[6] This requires optimizing both the topology of the network along with setting the capacities of the various lines. In many cases, the capacities are constrained to be integer quantities. Usually there are, depending on the technology used, additional restrictions that can be modeled as linear inequalities with integer or binary variables.

Cellular networks

[edit]

The task of frequency planning inGSM mobile networks involves distributing available frequencies across the antennas so that users can be served and interference is minimized between the antennas.[7] This problem can be formulated as an integer linear program in which binary variables indicate whether a frequency is assigned to an antenna.

Other applications

[edit]

Algorithms

[edit]

The naive way to solve an ILP is to simply remove the constraint thatx is integer, solve the corresponding LP (called theLP relaxation of the ILP), and then round the entries of the solution to the LP relaxation. But, not only may this solution not be optimal, it may not even be feasible; that is, it may violate some constraint.

Using total unimodularity

[edit]

While in general the solution to LP relaxation will not be guaranteed to be integral, if the ILP has the formmaxcTx{\displaystyle \max \mathbf {c} ^{\mathrm {T} }\mathbf {x} } such thatAx=b{\displaystyle A\mathbf {x} =\mathbf {b} } whereA{\displaystyle A} andb{\displaystyle \mathbf {b} } have all integer entries andA{\displaystyle A} istotally unimodular, then every basic feasible solution is integral. Consequently, the solution returned by thesimplex algorithm is guaranteed to be integral. To show that every basic feasible solution is integral, letx{\displaystyle \mathbf {x} } be an arbitrary basic feasible solution . Sincex{\displaystyle \mathbf {x} } is feasible,we know thatAx=b{\displaystyle A\mathbf {x} =\mathbf {b} }. Letx0=[xn1,xn2,,xnj]{\displaystyle \mathbf {x} _{0}=[x_{n_{1}},x_{n_{2}},\cdots ,x_{n_{j}}]} be the elements corresponding to the basis columns for the basic solutionx{\displaystyle \mathbf {x} }. By definition of a basis, there is some square submatrixB{\displaystyle B} ofA{\displaystyle A} with linearly independent columns such thatBx0=b{\displaystyle B\mathbf {x} _{0}=\mathbf {b} }.

Since the columns ofB{\displaystyle B} are linearly independent andB{\displaystyle B} is square,B{\displaystyle B} is nonsingular,and therefore by assumption,B{\displaystyle B} isunimodular and sodet(B)=±1{\displaystyle \det(B)=\pm 1}. Also, sinceB{\displaystyle B} is nonsingular, it is invertible and thereforex0=B1b{\displaystyle \mathbf {x} _{0}=B^{-1}\mathbf {b} }. By definition,B1=Badjdet(B)=±Badj{\displaystyle B^{-1}={\frac {B^{\mathrm {adj} }}{\det(B)}}=\pm B^{\mathrm {adj} }}. HereBadj{\displaystyle B^{\mathrm {adj} }} denotes theadjugate ofB{\displaystyle B} and is integral becauseB{\displaystyle B} is integral. Therefore,B1=±Badj is integral.x0=B1b is integral.Every basic feasible solution is integral.{\displaystyle {\begin{aligned}&\Rightarrow B^{-1}=\pm B^{\mathrm {adj} }{\text{ is integral.}}\\&\Rightarrow \mathbf {x} _{0}=B^{-1}b{\text{ is integral.}}\\&\Rightarrow {\text{Every basic feasible solution is integral.}}\end{aligned}}}Thus, if the matrixA{\displaystyle A} of an ILP is totally unimodular, rather than use an ILP algorithm, the simplex method can be used to solve the LP relaxation and the solution will be integer.

Exact algorithms

[edit]

When the matrixA{\displaystyle A} is not totally unimodular, there are a variety of algorithms that can be used to solve integer linear programs exactly. One class of algorithms arecutting plane methods, which work by solving the LP relaxation and then adding linear constraints that drive the solution towards being integer without excluding any integer feasible points.

Another class of algorithms are variants of thebranch and bound method. For example, thebranch and cut method that combines both branch and bound and cutting plane methods. Branch and bound algorithms have a number of advantages over algorithms that only use cutting planes. One advantage is that the algorithms can be terminated early and as long as at least one integral solution has been found, a feasible, although not necessarily optimal, solution can be returned. Further, the solutions of the LP relaxations can be used to provide a worst-case estimate of how far from optimality the returned solution is. Finally, branch and bound methods can be used to return multiple optimal solutions.

Exact algorithms for a small number of variables

[edit]

SupposeA{\displaystyle A} is anm-by-n integer matrix andb{\displaystyle \mathbf {b} } is anm-by-1 integer vector. We focus on the feasibility problem, which is to decide whether there exists ann-by-1 vectorx{\displaystyle \mathbf {x} } satisfyingAxb{\displaystyle A\mathbf {x} \leq \mathbf {b} }.

LetV be the maximum absolute value of the coefficients inA{\displaystyle A} andb{\displaystyle \mathbf {b} }. Ifn (the number of variables) is a fixed constant, then the feasibility problem can be solved in time polynomial inm and logV. This is trivial for the casen=1. The casen=2 was solved in 1981 byHerbert Scarf.[13] The general case was solved in 1983 byHendrik Lenstra, combining ideas byLászló Lovász andPeter van Emde Boas.[14]Doignon's theorem asserts that an integer program is feasible whenever every subset of2n{\displaystyle 2^{n}} constraints is feasible; a method combining this result with algorithms forLP-type problems can be used to solve integer programs in time that is linear inm{\displaystyle m} andfixed-parameter tractable (FPT) inn{\displaystyle n}, but possiblydoubly exponential inn{\displaystyle n}, with no dependence onV{\displaystyle V}.[15]

In the special case of 0-1 ILP, Lenstra's algorithm is equivalent to complete enumeration: the number of all possible solutions is fixed (2n), and checking the feasibility of each solution can be done in time poly(m, logV). In the general case, where each variable can be an arbitrary integer, complete enumeration is impossible. Here, Lenstra's algorithm uses ideas fromGeometry of numbers. It transforms the original problem into an equivalent one with the following property: either the existence of a solutionx{\displaystyle \mathbf {x} } is obvious, or the value ofxn{\displaystyle x_{n}} (then-th variable) belongs to an interval whose length is bounded by a function ofn. In the latter case, the problem is reduced to a bounded number of lower-dimensional problems. The run-time complexity of the algorithm has been improved in several steps:

These algorithms can also be used formixed integer linear programs (MILP) - programs in which some variables are integer and some variables are real.[23] The original algorithm of Lenstra[14]: Sec.5  has run-time2O(n3)poly(d,L){\displaystyle 2^{O(n^{3})}\cdot poly(d,L)}, where n is the number of integer variables, d is the number of continuous variables, andL is the binary encoding size of the problem. Using techniques from later algorithms, the factor2O(n3){\displaystyle 2^{O(n^{3})}} can be improved to2O(nlogn){\displaystyle 2^{O(n\log n)}} or tonn{\displaystyle n^{n}}.[23]

Heuristic methods

[edit]

Since integer linear programming isNP-hard, many problem instances are intractable and so heuristic methods must be used instead. For example,tabu search can be used to search for solutions to ILPs.[24] To use tabu search to solve ILPs, moves can be defined as incrementing or decrementing an integer constrained variable of a feasible solution while keeping all other integer-constrained variables constant. The unrestricted variables are then solved for. Short-term memory can consist of previously tried solutions while medium-term memory can consist of values for the integer constrained variables that have resulted in high objective values (assuming the ILP is a maximization problem). Finally, long-term memory can guide the search towards integer values that have not previously been tried.

Other heuristic methods that can be applied to ILPs include

There are also a variety of other problem-specific heuristics, such as thek-opt heuristic for the traveling salesman problem. A disadvantage of heuristic methods is that if they fail to find a solution, it cannot be determined whether it is because there is no feasible solution or whether the algorithm simply was unable to find one. Further, it is usually impossible to quantify how close to optimal a solution returned by these methods are.

Sparse integer programming

[edit]

It is often the case that the matrixA{\displaystyle A} that defines the integer program issparse. In particular, this occurs when the matrix has ablock structure, which is the case in many applications. The sparsity of the matrix can be measured as follows. Thegraph ofA{\displaystyle A} has vertices corresponding to columns ofA{\displaystyle A}, and two columns form an edge ifA{\displaystyle A} has a row where both columns have nonzero entries. Equivalently, the vertices correspond to variables, and two variables form an edge if they share an inequality. Thesparsity measured{\displaystyle d} ofA{\displaystyle A} is the minimum of thetree-depth of the graph ofA{\displaystyle A} and thetree-depth of the graph of the transpose ofA{\displaystyle A}. Leta{\displaystyle a} be thenumeric measure ofA{\displaystyle A} defined as the maximum absolute value of any entry ofA{\displaystyle A}. Letn{\displaystyle n} be the number of variables of the integer program. Then it was shown in 2018[25] that integer programming can be solved instrongly polynomial andfixed-parameter tractable time parameterized bya{\displaystyle a} andd{\displaystyle d}. That is, for some computable functionf{\displaystyle f} and some constantk{\displaystyle k}, integer programming can be solved in timef(a,d)nk{\displaystyle f(a,d)n^{k}}. In particular, the time is independent of the right-hand sideb{\displaystyle b} and objective functionc{\displaystyle c}. Moreover, in contrast to the classical result of Lenstra, where the numbern{\displaystyle n} of variables is a parameter, here the numbern{\displaystyle n} of variables is a variable part of the input.

See also

[edit]

References

[edit]
  1. ^Karp, Richard M. (1972)."Reducibility among Combinatorial Problems"(PDF). In R. E. Miller; J. W. Thatcher; J.D. Bohlinger (eds.).Complexity of Computer Computations. New York: Plenum. pp. 85–103.doi:10.1007/978-1-4684-2001-2_9.ISBN 978-1-4684-2003-6.
  2. ^"Mixed-Integer Linear Programming (MILP): Model Formulation"(PDF). Retrieved16 April 2018.
  3. ^Papadimitriou, C. H.;Steiglitz, K. (1998).Combinatorial optimization: algorithms and complexity. Mineola, NY: Dover.ISBN 0486402584.
  4. ^Erickson, J. (2015)."Integer Programming Reduction"(PDF). Archived fromthe original(PDF) on 18 May 2015.
  5. ^Williams, H.P. (2009).Logic and integer programming. International Series in Operations Research & Management Science. Vol. 130.ISBN 978-0-387-92280-5.
  6. ^Borndörfer, R.;Grötschel, M. (2012)."Designing telecommunication networks by integer programming"(PDF).
  7. ^Sharma, Deepak (2010)."Frequency Planning".
  8. ^Morais, Hugo; Kádár, Péter; Faria, Pedro; Vale, Zita A.; Khodr, H. M. (2010-01-01)."Optimal scheduling of a renewable micro-grid in an isolated load area using mixed-integer linear programming".Renewable Energy.35 (1):151–156.Bibcode:2010REne...35..151M.doi:10.1016/j.renene.2009.02.031.hdl:10400.22/1585.ISSN 0960-1481.
  9. ^Omu, Akomeno; Choudhary, Ruchi; Boies, Adam (2013-10-01)."Distributed energy resource system optimisation using mixed integer linear programming".Energy Policy.61:249–266.Bibcode:2013EnPol..61..249O.doi:10.1016/j.enpol.2013.05.009.ISSN 0301-4215.S2CID 29369795.
  10. ^Schouwenaars, T.; Valenti, M.; Feron, E.; How, J. (2005). "Implementation and Flight Test Results of MILP-based UAV Guidance".2005 IEEE Aerospace Conference. pp. 1–13.doi:10.1109/AERO.2005.1559600.ISBN 0-7803-8870-4.S2CID 13447718.
  11. ^Radmanesh, Mohammadreza; Kumar, Manish (2016-03-01)."Flight formation of UAVs in presence of moving obstacles using fast-dynamic mixed integer linear programming".Aerospace Science and Technology.50:149–160.Bibcode:2016AeST...50..149R.doi:10.1016/j.ast.2015.12.021.ISSN 1270-9638.
  12. ^Bast, Hannah; Brosi, Patrick; Storandt, Sabine (2017-10-05). "Efficient Generation of Geographically Accurate Transit Maps".arXiv:1710.02226 [cs.CG].
  13. ^Scarf, Herbert E. (1981)."Production Sets with Indivisibilities, Part I: Generalities".Econometrica.49 (1):1–32.doi:10.2307/1911124.ISSN 0012-9682.JSTOR 1911124.
  14. ^abcLenstra, H. W. (1983-11-01)."Integer Programming with a Fixed Number of Variables".Mathematics of Operations Research.8 (4):538–548.CiteSeerX 10.1.1.431.5444.doi:10.1287/moor.8.4.538.ISSN 0364-765X.
  15. ^Amenta, Nina;De Loera, Jesús A.; Soberón, Pablo (2017). "Helly's theorem: new variations and applications". InHarrington, Heather A.; Omar, Mohamed; Wright, Matthew (eds.).Proceedings of the AMS Special Session on Algebraic and Geometric Methods in Applied Discrete Mathematics held in San Antonio, TX, January 11, 2015. Contemporary Mathematics. Vol. 685. Providence, Rhode Island: American Mathematical Society. pp. 55–95.arXiv:1508.07606.doi:10.1090/conm/685.ISBN 9781470423216.MR 3625571.
  16. ^Kannan, Ravi (1987-08-01)."Minkowski's Convex Body Theorem and Integer Programming".Mathematics of Operations Research.12 (3):415–440.doi:10.1287/moor.12.3.415.ISSN 0364-765X.S2CID 495512.
  17. ^Goemans, Michel X.; Rothvoss, Thomas (2020-11-07)."Polynomiality for Bin Packing with a Constant Number of Item Types".Journal of the ACM.67 (6): 38:1–38:21.doi:10.1145/3421750.hdl:1721.1/92865.ISSN 0004-5411.S2CID 227154747.
  18. ^Frank, András; Tardos, Éva (1987-03-01)."An application of simultaneous diophantine approximation in combinatorial optimization".Combinatorica.7 (1):49–65.doi:10.1007/BF02579200.ISSN 1439-6912.S2CID 45585308.
  19. ^Bliem, Bernhard; Bredereck, Robert;Niedermeier, Rolf (2016-07-09)."Complexity of efficient and envy-free resource allocation: few agents, resources, or utility levels".Proceedings of the Twenty-Fifth International Joint Conference on Artificial Intelligence. IJCAI'16. New York, New York, USA: AAAI Press:102–108.ISBN 978-1-57735-770-4.
  20. ^Bredereck, Robert; Kaczmarczyk, Andrzej; Knop, Dušan; Niedermeier, Rolf (2019-06-17)."High-Multiplicity Fair Allocation: Lenstra Empowered by N-fold Integer Programming".Proceedings of the 2019 ACM Conference on Economics and Computation. EC '19. Phoenix, AZ, USA: Association for Computing Machinery. pp. 505–523.doi:10.1145/3328526.3329649.ISBN 978-1-4503-6792-9.S2CID 195298520.
  21. ^Dadush, Daniel (2012-06-14)."Integer Programming, Lattice Algorithms, and Deterministic Volume Estimation.
  22. ^Reis, Victor; Rothvoss, Thomas (2023-03-26)."The Subspace Flatness Conjecture and Faster Integer Programming".
  23. ^abHildebrand, Robert (2016-10-07)."FPT algorithm for mixed integer program".Theoretical Computer Science Stack Exchange. Retrieved2024-05-21.
  24. ^Glover, F. (1989). "Tabu search-Part II".ORSA Journal on Computing.1 (3):4–32.doi:10.1287/ijoc.2.1.4.S2CID 207225435.
  25. ^Koutecký, Martin; Levin, Asaf; Onn, Shmuel (2018). "A parameterized strongly polynomial algorithm for block structured integer programs". In Chatzigiannakis, Ioannis; Kaklamanis, Christos; Marx, Dániel; Sannella, Donald (eds.).45th International Colloquium on Automata, Languages, and Programming, ICALP 2018, July 9–13, 2018, Prague, Czech Republic. LIPIcs. Vol. 107. Schloss Dagstuhl – Leibniz-Zentrum für Informatik. pp. 85:1–85:14.arXiv:1802.05859.doi:10.4230/LIPICS.ICALP.2018.85.

Further reading

[edit]

External links

[edit]
Functions
Gradients
Convergence
Quasi–Newton
Other methods
Hessians
Graph of a strictly concave quadratic function with unique maximum.
Optimization computes maxima and minima.
General
Differentiable
Convex
minimization
Linear and
quadratic
Interior point
Basis-exchange
Paradigms
Graph
algorithms
Minimum
spanning tree
Shortest path
Network flows
Retrieved from "https://en.wikipedia.org/w/index.php?title=Integer_programming&oldid=1282684574"
Categories:
Hidden categories:

[8]ページ先頭

©2009-2025 Movatter.jp