Integer linear optimization: Cutting Planes 2: Unterschied zwischen den Versionen

Aus Operations-Research-Wiki
Wechseln zu: Navigation, Suche
[unmarkierte Version][unmarkierte Version]
(Approach)
(Approach)
Zeile 9: Zeile 9:
 
First of all you should divide your restrictions trough the greates common factor.
 
First of all you should divide your restrictions trough the greates common factor.
 
:: Example: <math>6x_1 – 15x_2 <= 120</math>
 
:: Example: <math>6x_1 – 15x_2 <= 120</math>
:: <math>\Rightarrow 3x_1 – 5 x_2 <= 40</math>
+
:: <math>\Rightarrow</math> <math>3x_1 – 5 x_2 <= 40</math>
  
 
:(1) You search for the continous Optimum with the Simplex Algorithm. If your solution is integer you are finished.
 
:(1) You search for the continous Optimum with the Simplex Algorithm. If your solution is integer you are finished.

Version vom 20. Juni 2013, 12:33 Uhr

Cutting Planes Gruppe 2

Idea

The Idea of the Cutting Plane is to add Restrictions (the Cutting Planes) to contract the solution space more and more to get integers. These restrictions cut of the non-integer parts of the solution.


Approach

First of all you should divide your restrictions trough the greates common factor.

Example: Fehler beim Parsen (http://mathoid.testme.wmflabs.org Serverantwort ist ungültiges JSON.): 6x_1 – 15x_2 <= 120
Fehler beim Parsen (http://mathoid.testme.wmflabs.org Serverantwort ist ungültiges JSON.): \Rightarrow
Fehler beim Parsen (http://mathoid.testme.wmflabs.org Serverantwort ist ungültiges JSON.): 3x_1 – 5 x_2 <= 40


(1) You search for the continous Optimum with the Simplex Algorithm. If your solution is integer you are finished.
(2) Otherwise you have to insert Cutting Planes
Your source row is the one with the greates non integer part.
Row r:
Fehler beim Parsen (http://mathoid.testme.wmflabs.org Serverantwort ist ungültiges JSON.): BV_r+\sum (a_{ij}*NBV_j) = b_r
Converting r to: You have to break all and into the integer part and the rest (non integer) .
(Fehler beim Parsen (http://mathoid.testme.wmflabs.org Serverantwort ist ungültiges JSON.): 0 \leq f_{ij} < 1

)

(Fehler beim Parsen (http://mathoid.testme.wmflabs.org Serverantwort ist ungültiges JSON.): 0 \leq f_i < 1

)

We convert r to:
Fehler beim Parsen (http://mathoid.testme.wmflabs.org Serverantwort ist ungültiges JSON.): BV_r+\sum ((f_{rj} + g_{rj})*NBV_j) = g_r + f_r
Take the integer parts on the right side of the formula
Fehler beim Parsen (http://mathoid.testme.wmflabs.org Serverantwort ist ungültiges JSON.): \sum(f_{rj}*NBV_j) = g_r + f_r - \sum(g_{rj}*NBV_j)-BV_r
Merge the integer parts into the slack variable
Fehler beim Parsen (http://mathoid.testme.wmflabs.org Serverantwort ist ungültiges JSON.): y_{neu} = g_r - \sum(g_{rj}*NBV_j)-BV_r
Fehler beim Parsen (http://mathoid.testme.wmflabs.org Serverantwort ist ungültiges JSON.): \Rightarrow

Fehler beim Parsen (http://mathoid.testme.wmflabs.org Serverantwort ist ungültiges JSON.): \sum(f_{rj}*NBV_j) = f_r + y_{neu}

Now we have to constract our new formula in the same form like the others. You have to consider, that cannot have a algebraic sign.
Fehler beim Parsen (http://mathoid.testme.wmflabs.org Serverantwort ist ungültiges JSON.): y_{neu} - (f_{rj}*NBV_j) = -f_r
This is now our Cutting Plane.