• Nenhum resultado encontrado

Linear Programming: algorithms Integer linear programming: formulations, techniques and applications.

N/A
N/A
Protected

Academic year: 2022

Share "Linear Programming: algorithms Integer linear programming: formulations, techniques and applications."

Copied!
21
0
0

Texto

(1)

Santiago Valdés Ravelo santiago.ravelo@inf.ufrgs.br

Linear

Programming:

algorithms

Integer linear programming:

formulations, techniques and applications.

07

September, 2020

(2)

“The final test of a theory is its capacity to solve the problems which originated it.”1

George B. Dantzig.

1George B. Dantzig,“Linear Programming and Extensions”, Rand Corporation Research Study Princeton University Press, 1963, p. 1.

(3)

1 Previous lectures

2 Simplex

3 Ellipsoids

4 Projective

5 Final comments

(4)

Previous lectures

(5)

Previous lectures

Linear programming

▶ Linear programming definitions, geometrical interpretation and equivalence.

▶ Dual linear programming problem, duality theorems and complementary slackness.

▶ Dantzig-Wolfe decomposition and columns generation method.

(6)

Simplex

(7)

Simplex

George Dantzig

George Bernard Dantzig (8/11/1914−13/5/2005, United States of America)

Research:

Linear programming.

Operational research.

Industrial engineering.

Awards:

John von Neumann Theory Prizeof the Institute for Operations Research and the Management Sciences (1975).

National Medal of Sciencein Mathematical, Statistical, and Computational Sciences (1975).

Harvey Prize(1985).

Harold Pender Award(1995).

(8)

Simplex

Properties

Since the constraints of a linear system define a polyhedron𝑃as feasible region, it follows that if there exists an optimal solution for a linear objective function, then one of the polyhedron extremes is an optimal.

Moreover, the extremes of the polyhedron are points where the non-zero variables correspond to linearly independent columns of the matrix of constraints. Therefore, if there exists an optimal, then an optimal solution can be obtained by considering a base of the constraint matrix.

(9)

Simplex

Algorithm

Idea. Start with a base 𝐵 of the constraint matrix𝐴 and compute a solution (an extreme point). At each iteration, the movement to an adjacent extreme point is done only if the objective value can be improved. If there exists an improvement, then it is given by increasing the value of a variable𝑥𝑖 whose associated column 𝑖is out of𝐵 (𝑥𝑖= 0). In such case, replace a column of𝐵 by𝑖. Time complexity. In order to guarantee efficiency, the algorithm maintains a tableau updated at each iteration. That tableau allows to find the variable𝑥𝑖 and to compute the new extreme very fast.

However, in the worst case scenario, the algorithm may enumerate each extreme, being exponential on the number of variables,.

(10)

Ellipsoids

(11)

Ellipsoids

Leonid Khachiyan

Leonid Genrikhovich Khachiyan (3/5/1952 − 29/4/2005, Russia)

Research:

Linear programming.

Mathematical programming.

Polyhedral theory.

Complexity and graph theories.

Awards:

Fulkerson Prizeof the American Mathematical Society&Mathematical Programming Society (1982).

(12)

Ellipsoids

Ellipsoid algorithm for convex problems

Consider aSEPARATING ORACLE, i.e., a function that receives a convex set𝑆and a point𝑥, and indicates that𝑥 ∈ 𝑆or returns an hyperplane that separates𝑥from𝑆.

To determine if a convex set𝑆is feasible, start with an ellipsoid(large enough) bounding𝑆and, at each iteration, ask to the oracle if the ellipsoid center𝑥is in𝑆. If not, let𝐻be the hyperplane separating𝑥from𝑆and updateto be a minimum volume ellipsoid containingℰ ∩ 𝐻+. Stop if𝑥 ∈ 𝑆or if the volume ofis smaller than some threshold.

→ → …

𝑥 𝐻

𝑥 𝐻

(13)

Ellipsoids

Algorithm

Idea. Proved that the ellipsoid method applied to linear programms requires polynomial time to solve the problem.

Time complexity. 𝒪 (𝑛6× ⟨𝐼⟩), where𝑛is the number of variables and⟨𝐼⟩ is the size (in bits) of the instance.

(14)

Projective

(15)

Projective

Narendra Karmarkar

Narendra Krishna Karmarkar (15/11/1955, India) Research:

Linear programming.

Non-linear problems.

Computer architecture.

Awards:

Frederick W. Lanchester Prizeof the Operations Research Society of America (1984).

Fulkerson Prizeof the American Mathematical Society&Mathematical Programming Society (1988).

Paris Kanellakis Awardof the Association for Computing Machinery (2000).

(16)

Projective

Property

Given the polytope𝑃and an interior point𝑐 ∈ 𝑃, there exists a transformation to a polytope𝑃with interior point𝑐, such that the factor between the radius (𝑟𝑠) of the smallest sphere containing𝑃centered at𝑐and the radius (𝑟𝑙) of the largest sphere contained in𝑃and centered at𝑐is𝒪 (𝑛).

𝑟𝑠 𝑟𝑙 = 𝒪 (𝑛)

𝑐 𝑟𝑠

𝑟𝑙

(17)

Projective

Algorithm

Idea. Repeatedly apply the transformations, each one followed by an optimization of the inscribed sphere in order to obtain a sequence of points that converge to an optimal solution in polynomial time.

Time complexity. 𝒪 (𝑛3.5× ⟨𝐼⟩), where𝑛 is the number of variables and⟨𝐼⟩ the size (in bits) of the instance.

(18)

Final comments

(19)

Final comments

Faster results

▶ 𝒪 ((𝑚 + 𝑛)1.5× 𝑛 × 𝐿). Pravin M. Vaidya. “Speeding-up linear programming using fast matrix optimization”.FOCS, 1989.

▶ 𝒪 ((𝑛𝑛𝑧(𝐴) + 𝑛2) ×

𝑛 × 𝐿). Yin Tat Lee and Aaron Sidford.“Efficient inverse maintenance and faster algorithms for linear programming”.FOCS, 2015.

▶ 𝒪 (𝑛2.166× 𝐿). Michael B. Cohen, Yin Tat Lee and Zhao Song. “Solving linear programs in the current matrix multiplication time”. STOC, 2019.

▶ 𝒪 (𝑛2.055× 𝐿). Shunhua Jiang, Zhao Song, Omri Weinstein and Hengjie Zhang. “Faster dynamic matrix inverse for faster LPs”.ArXiv, 2020.

(20)

Final comments

Families of linear programming algorithms

▶ Basis exchange: Simplex, Columns generation, Criss-cross algorithms.

▶ Interior point methods: Ellipsoid, Projective, Matrix multiplication.

(21)

Santiago Valdés Ravelo santiago.ravelo@inf.ufrgs.br

Linear

Programming:

algorithms

Integer linear programming:

formulations, techniques and applications.

07

September, 2020

Referências

Documentos relacionados

57 Impacto do mapeamento de tarefas paralelas no tempo de execu¸c˜ao da aplica¸c˜ao 127 58 Representa¸c˜ao dos valores m´edios dos objetivos nas solu¸c˜oes n˜ao dominadas,

Através do sistema desenvolvido, é possível controlar a potência de cada lâmpada de vapor de sódio de alta pressão dos postes de iluminação pública de

A mobilidade para pensar, para saber, para conhecer-se e refletir, sem medo de uma “alma penada”, de uma mente que comanda ou, o cérebro senhor do escravo corpo (RENGEL, 2007,

A lo largo de estas páginas abordaremos el problema desde la óptica de la causación múltiple utilizada por Granda (1982) en su artículo Origen y formación del leísmo en el

e¡¡bora ainda não se drsponha de uma política para áreas contaminadas, legis{açoes pertinentes ao assunto e uma forma organizada de atuação, algumas açöes isoladas conceTnentes

Pode-se afirmar que este estudo procurou construir um diálogo entre os Estudos Culturais e os novos sociais estudos da infância e entre as concepções de cultura como constituinte

De posse do conhecimento sobre as vantagens e desvantagens de cada método e tendo em vista os resultados obtidos neste estudo, conclui-se que os dois métodos avaliados: CFE e CFI

O presente trabalho, intitulado “Banco de Alimentos: o fetiche do reaproveitamento alimentar e das ações educativas”, apresenta os resultados de uma pesquisa realizada em