|
Lagrangian relaxation is a relaxation technique which works by moving hard constraints into the objective so as to exact a penalty on the objective if they are not satisfied.
[edit] Mathematical description
Given an LP problem and on the following form:
-
| max |
|
cTx |
| s.t. |
|
|
 |
If we split the constraints in A such that , and m1 + m2 = m we may write the system:
-
| max |
|
cTx |
| s.t. |
| (1) |
|
 |
| (2) |
|
 |
We may introduce the constraint (2) into the objective:
-
| max |
|
cTx + λT(b2 − A2x) |
| s.t. |
| (1) |
|
 |
If we let be nonnegative weights, we get penalized if we violate the constraint (2), and we are also rewarded if we satisfy the constraint strictly. The above system is called the Lagrangian Relaxation of our original problem.
Of particular use is the property that for any fixed set of values, the optimal result to the Lagrangian Relaxation problem will be no smaller than the optimal result to the original problem. To see this, let be the optimal solution to the original problem, and let be the optimal solution to the Lagrangian Relaxation. We can then see that
-
The first inequality is true because is feasible in the original problem and the second inequality is true because is the optimal solution to the Lagrangian Relaxation.
This in turn allows us to take address the original problem by instead solving the partially dualized problem
-
| min |
|
P(λ) |
|
s.t. |
|
 |
where we define P(λ) as
-
| max |
|
cTx + λT(b2 − A2x) |
| s.t. |
| (1) |
|
 |
A Lagrangian Relaxation algorithm thus proceeds to explore the range of feasible λ values while seeking to minimize the result returned by the inner P problem. Each value returned by P is a candidate upper bound to the problem, the smallest of which is kept as the best upper bound. If we additionally employ a heuristic, probably seeded by the values returned by P, to find feasible solutions to the original problem, then we can iterate until the best upper bound and the cost of the best feasible solution converge to a desired tolerance.
Página espejo de la Wikipedia
Directorio de Enlaces Directorio dmoz Directorio espejo dmoz Pedro Bernardo
|