Integer Programming
Integer Programming
Integer Programming
to accompany
Operations Research: Applications and Algorithms
4th edition
by Wayne L. Winston
3
Integer Programming Models
4
The owner has a budget of $40,000 for purchasing machines
and 200 square feet of available floor space. The owner wants
to know how many of each type of machine to purchase to
maximize the daily increase in profit.
5
6
7
8
9
10
Definisikan variable keputusannya:
11
12
Formulasi model mixed IP sebagai berikut:
13
Example 1: Capital Budgeting IP
Stockco is considering four investments
Each investment
Yields a determined NPV
Requires at certain cash flow at the present time
Currently Stockco has $14,000 available for
investment.
Formulate an IP whose solution will tell Stockco
how to maximize the NPV obtained from the
four investments.
14
Formulasi:
15
16
17
Solusi:
18
19
Fixed-Charge Problems
Suppose activity i incurs a fixed charge if undertaken
at any positive level. Let
= Level of activity i
= 1 if activity i is undertaken at positive level
= 0 if activity i is not undertaken at positive level
Then a constraint of the form < must be added to
the formulation. It must be large enough to ensure
that will be less than or equal to .
20
In a set-covering problem, each member of
a given set must be “covered” by an acceptable
member of some set.
The objective of a set-covering problem is to
minimize the number of elements in set 3 that
are required to cover all the elements in set 1.
Given two constraints
f x x ,..., x 0
g x1 , x2 ,..., xn 0
1 2 n
g x , x ,..., x M 1 y
1 2 n
21
M is a number chosen large enough to ensure that both
constraints are satisfied for all values of x1 , x2 ,..., xn that
satisfy the other constraints in the problem.
Suppose we want to ensure that f x1 , x2 ,..., xn > 0 implies
g x1 , x2 ,..., xn 0 . Then we include the following constraint in
the formulation:
g x1 , x 2 ,..., x n My
f x , x ,..., x M 1 y
1 2 n
y 0 or 1
Here, M is a large positive number, chosen large enough
so that f < M and – g < M hold for all values of x1 , x2 ,..., xn
that satisfy the other constraints in the problem.
This is called an if-then constraint.
22
0-1 variables can be used to model
optimization problems involving piecewise
linear functions.
A piecewise linear function consists of
several straight line segments.
The graph of the piecewise linear function is
made of four straight-line segments.
The points where the slope of the piecewise
linear function changes are called the break
points of the function.
A piecewise linear function is not a linear
function so linear programming can not be
used to solve the optimization problem.
23
By using 0-1 variables, however, a piecewise
linear function can e represented in linear
form.
Suppose the piecewise linear function f (x) has
break points b , b ,...,b . 1 2 n
y y ... y
1 2 n 1
z z ... z 1
1 2 n
y 0
1
or 1 i 1,2,..., n 1; z0 i 1,2,..., n
1
24
If a piecewise linear function f(x) involved in a
formulation has the property that the slope of
the f(x) becomes less favorable to the decision
maker as x increases, then the tedious IP
formulation is unnecessary.
LINDO can be used to solve pure and mixed
IPs.
In addition to the optimal solution, the LINDO
output also includes shadow prices and
reduced costs.
LINGO and the Excel Solver can also be used to
solve IPs.
25
9.3 The Branch-and-Bound Method for Solving
Pure Integer Programming Problems
26
Suppose that in a given subproblem (call it old
subproblem), assumes a fractional value
between the integers i and i+1. Then the two
newly generated subproblems are
New Subproblem 1 Old subproblem + Constraint x i i
27
These three situations (for a max problem) result in a
subproblem being fathomed
The subproblem is infeasible, thus it cannot yield the optimal
solution to the IP.
The subproblem yield an optimal solution in which all variables have
integer values. If this optimal solution has a better z-value than any
previously obtained solution that is feasible in the IP, than it
becomes a candidate solution, and its z-value becomes the
current lower bound (LB) on the optimal z-value for the IP.
The optimal z-value for the subproblem does not exceed (in a max
problem) the current LB, so it may be eliminated from
consideration.
29
When solving IP problems using Solver you can
adjust a Solver tolerance setting.
The setting is found under the Options.
For example a tolerance value of .20 causes
the Solver to stop when a feasible solution is
found that has an objective function value
within 20% of the optimal solution.
30
9.4 The Branch-and-Bound Method for Solving
Mixed Integer Programming Problems
31
9.5 Solving Knapsack Problems by
the Branch-and-Bound Method
A knapsack problem is an IP with a single
constraint.
A knapsack problem in which each variable
must be equal to 0 or 1 may be written as
max z = c1x1 + c2x2 + ∙∙∙ + cnxn
s.t. a1x1 + a2x2 + ∙∙∙ + anxn ≤ b
x1 = 0 or 1 (i = 1, 2, …, n)
When knapsack problems are solved by the
branch-and-bound method, two aspects of the
method greatly simplify.
Due to each variable equaling 0 or 1, branching on xi
will yield in xi =0 and an xi =1 branch.
The LP relaxation may be solved by inspection.
32
9.6 Solving Combinatorial Optimization Problems
by the Branch-and-Bound Method
34
Example 11: Traveling Salesperson
Problem
Joe State lives in Gary, Indiana and owns
insurance agencies in Gary, Fort Wayne,
Evansville, Terre Haute and South Bend.
Each December he visits each of his insurance
agencies.
The distance between each agency is known.
What order of visiting his agencies will
minimize the total distance traveled?
35
Example 11: Solution
To begin define
1 if Joe leaves city i and travels next to city j
xij
0 otherwise
Also, for i j ,
cij distance between cities i and j
cii M , where M is a large positive number
39
When using branch-and-bound methods to
solve TSPs with many cities, large amounts of
computer time is needed.
Heuristic methods, or heuristics, can be
used to quickly lead to a good solution.
Heuristics is a method used to solve a problem
by trial and error when an algorithm approach
is impractical.
Two types of heuristic methods can be used to
solve TSP; nearest neighbor method and
cheapest-insertion method.
40
Nearest Neighbor Method
Begin at any city and then “visit” the nearest city.
Then go to the unvisited city closest to the city we have
most recently visited.
Continue in this fashion until a tour is obtained. After
applying this procedure beginning at each city, take the
best tour found.
Cheapest Insertion Method (CIM)
Begin at any city and find its closest neighbor.
Then create a subtour joining those two cities.
Next, replace an arc in the subtour (say, arc (i, j) by the
combinations of two arcs---(i, k) and (k, j), where k is not
in the current subtour---that will increase the length of the
subtour by the smallest (or cheapest) amount.
Continue with this procedure until a tour is obtained. After
applying this procedure beginning with each city, we take
the best tour found.
41
Three methods to evaluate heuristics
Performance guarantees
Gives a worse-case bound on how far away from
optimality a tour constructed by the heuristic can be
Probabilistic analysis
A heuristic is evaluated by assuming that the location
of cities follows some known probability distribution
Empirical analysis
Heuristics are compared to the optimal solution for a
number of problems for which the optimal tour is
known
42
An IP formulation can be used to solve a TSP but can
become unwieldy and inefficient for large TSPs.
n n
46
9.8 Cutting Plane Algorithm
An alternative method to the branch-and-bound method
is the cutting plane algorithm.
Summary of the cutting plane algorithm
Step 1 Find the optional tableau for the IP’s programming
relaxation. If all variables in the optimal solution assume
integer values, we have found an optimal solution to the
IP; otherwise, proceed to step2.
Step 2 Pick a constraint in the LP relaxation optimal tableau
whose right-hand side has the fractional part closest to
1/2. This constraint will be used to generate a cut.
Step 2a For the constraint identified in step 2, write its right-
hand side and each variable’s coefficient in the form [x]+ f,
where 0 <= f < 1.
47
Step 2b Rewrite the constraint used to generate the cut as
All terms with integer coefficients = all terms with fractional coefficients
48