user_guide:tutorials:optimization

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
tutorial:optimization [2013/08/22 19:56] – [Chvátal-Gomory Closure - Example 1] pfetschuser_guide:tutorials:optimization [2019/02/04 22:55] (current) – external edit 127.0.0.1
Line 1: Line 1:
-====== polymake and Optimization ====== +{{page>.:latest:@FILEID@}}
- +
-By Sebastian Pokutta and Marc E. Pfetsch. +
- +
-===== Introduction ===== +
- +
-Polymake offers many interesting features that can help (discrete) optimizers to analyze optimization problems. For example +
-  * linear optimization can be performed exactly and visualized in small dimensions +
-  * the convex hull of feasible points of an integer program can be computed and analyzed +
-  * Hilbert bases can be computed +
- +
-There are several other tutorials that cover similar topics: +
-  * [[tutorial:ilp_and_hilbertbases|ILP and Hilbert Bases]] +
-  * [[tutorial:michaels_tutorial2|Gomory Cuts]] +
-  * [[tutorial:michaels_tutorial|Branch and Bound]] +
-  * [[tutorial:lattice_polytopes_tutorial|Tutorial for Lattice Polytopes]] +
- +
-This tutorial is targeted towards the optimization community, since, surprisingly, polymake does not seem to be well known in this community. In particular, the community still tends to use the quite old program ''porta'' to compute convex hulls or inequality descriptions. While ''porta'' still does a decent job here, ''polymake'' offers a much broader feature set. Polymake supports several convex hull algorithms which might be better suited depending on the data. Moreover it offers many visualization tools that can help to better //understand// a given polytope. We think that polymake has many advantages for discrete optimizers and hope that this tutorial will help to spread the usage of polymake. +
- +
- +
-===== Input: lp2poly ===== +
- +
-The first important step is to get the desired input into ''polymake''. While it is possible to define polytopes in ''polymake'' right away, a more convenient methods, especially for people working in discrete optimization, is the possibility to read an optimization problem from a file. This has the advantage that input that is usually generated outside ''polymake'' can be simple loaded. A standard file format for linear (integer) programs is the so-called CPLEX LP-format, which is well known in the optimization community and can be read into polymake in a very straightforward way as shown in the following example: +
- +
-<code> +
-Minimize +
- obj:  x1 + x2 + x3 +
-Subject to +
- C1: x1 + x2 + x3 <= 2 +
-Bounds +
- 0 <= x1 <= 1 +
- 0 <= x2 <= 1 +
- 0 <= x3 <= 1 +
-End +
-</code> +
- +
-Thus, the file describes a 0/1-cube in three dimensions. It should be easy to adapt this format to other cases (If for example ''x1'' does not have any bounds you can write ''x1 free'' instead). +
- +
-Now assume that this example is contained in file ''c3t.lp''. We create a polytope from the file via: +
-<code> +
-polytope > $f=lp2poly('c3t.lp'); +
-</code> +
-The polytope ''$f'' is coded via floating point numbers: +
-<code> +
-polytope > print $f->type->full_name; +
-Polytope<Float> +
-</code> +
- +
-We convert it to a rational polytope via: +
-<code> +
-polytope > $p = new Polytope<Rational>($f); +
-</code> +
- +
-Now, ''$p'' contains data for the linear optimization problem in the file ''ct3.lp''. The corresponding polyhedron is stored directly in ''$p''. The information about the linear objective is contained in ''%%$p->LP%%''+
- +
- +
-===== Linear Optimization ===== +
- +
-Polymake can be used to perform several actions related to linear optimization (linear programming - LP). For instance, one can exactly solve a linear program (via lrs or cdd). Before we explain the corresponding usage, we first need to have a linear optimization problem at hand. +
- +
-Assuming that we are given the above example in variable ''$p'', the linear objective can be accessed via +
-<code> +
-polytope > print $p->LP->LINEAR_OBJECTIVE; +
-0 1 1 1 +
-</code> +
-Thus - as described in the file - the objective function coefficients are 1 for all three variables (and there is an offset of 0). +
- +
-Now, we can solve the corresponding linear program via +
-<code> +
-polytope > print $p->LP->MAXIMAL_VALUE; +
-+
-</code> +
-Thus, the maximal value that we can obtain via the above linear objective function is 2. We can also get an optimal vertex via +
-<code> +
-polytope > print $p->LP->MAXIMAL_VERTEX; +
-1 0 1 1 +
-</code> +
-This vertex corresponds to setting ''x1=0, x2=1, x3=3''. The optimal face can also be computed: +
-<code> +
-polytope > print $p->LP->MAXIMAL_FACE; +
-{4 5 6} +
-</code> +
-This means that the optimal face is the convex hull of three vertices (with indices 4, 5, 6). +
- +
-Of course, by replacing ''MAXIMAL'' by ''MINIMAL'', we obtain the corresponding values for minimization. +
- +
-The directed graph obtained by directing the graph of the polytope in the direction of increasing objective function can be obtained via +
-<code> +
-polytope > $p->VISUAL->DIRECTED_GRAPH; +
-</code> +
-{{ :tutorial:c3t_graph.gif?300 }} +
- +
-The minimal and maximal faces can be visualized via +
-<code> +
-polytope > $p->VISUAL->MIN_MAX_FACE; +
-</code> +
-{{ :tutorial:c3t_maxface.gif?300 |}} +
- +
- +
-===== Computing Facets ===== +
- +
-An important action that is often needed to come up with new facet describing inequalities for combinatorial optimization problems is the computation of convex hulls for small examples. +
- +
-==== Pure Integer Case ==== +
- +
-We begin with the case in which all variables are required to be integral, i.e., the //pure integer case//. Moreover, the approach depends on whether the polyhedron is bounded or not. +
- +
-=== Bounded Polyhedra === +
- +
-Let us illustrate the approach via the example of the //stable set problem//Here one is given an (undirected) Graph G = (V,E) with node set V and edges E. The goal is to find a largest subset of node V' such that any two nodes in V' are not connected by an edge. +
- +
-For our example consider the 5-cycle, i.e., the graph C<sub>5</sub> with five nodes {1, 2, 3, 4, 5} and edges {1,2}, {2,3}, {3,4}, {4,5}, {5,1}. A formulation of the stable set problem for this graph looks as follows: +
-<code> +
-Maximize +
- obj: x#1 + x#2 + x#3 + x#4 + x#5 +
-Subject to +
- edge_1: x#2 + x#1 <= 1 +
- edge_2: x#3 + x#2 <= 1 +
- edge_3: x#4 + x#3 <= 1 +
- edge_4: x#5 + x#4 <= 1 +
- edge_5: x#1 + x#5 <= 1 +
-Bounds +
- 0 <= x#1 <= 1 +
- 0 <= x#2 <= 1 +
- 0 <= x#3 <= 1 +
- 0 <= x#4 <= 1 +
- 0 <= x#5 <= 1 +
-General +
- x#1 x#2 x#3 x#4 x#5 +
-End +
-</code> +
-Here, ''General'' encodes that the following variables should be restricted to obtain integer values. Thus, all variables ''x#1, x#2, x#3, x#4, x#5'' are restricted to binary values (0 or 1). The value 1 encodes that the corresponding node will be in an optimal stable set (and 0 otherwise). The constraints ''edge_*'' encode that a most one of the two nodes covered by an edge is selected. Clearly, the corresponding polyhedron is bounded. +
- +
-We assume that the above information is contained in the file ''stab.lp''. We now read it into polymake and convert it to rational form, as explained above: +
-<code> +
-polytope > $f=lp2poly('stab.lp'); +
-polytope > $p = new Polytope<Rational>($f); +
-</code> +
- +
-We are now interested in all feasible solutions to the above problem, i.e., all assignments of 0 or 1 to the variables such that the above inequalities are satisfied. These feasible points can be computed via: +
-<code> +
-polytope > $p->LATTICE_POINTS; +
-</code> +
-To understand these points and make computational use of this information, we are interested in the convex hull of all feasible solutions. To this end, we construct a new polytope which is specified via points for which the convex hull is taken. This can be done as follows: +
-<code> +
-polytope > $s=new Polytope(POINTS=>$p->LATTICE_POINTS, COORDINATE_LABELS=>$p->COORDINATE_LABELS); +
-</code> +
-Here, the coordinate labels, i.e., the variable names, are copied to the new polytope. +
- +
-Now, the facets of the new polytope can be computed and listed via: +
-<code> +
-polytope > print_constraints($s); +
-Facets: +
-0: x#3 >= 0 +
-1: -x#4 -x#5 >= -1 +
-2: x#1 >= 0 +
-3: -x#2 - x#3 >= -1 +
-4: -x#1 - x#2 - x#3 - x#4 - x#5 >=-2 +
-5: -x#1 - x#2 >=-1 +
-6: x#4 >= 0 +
-7: -x#1 - x#5 >= -1 +
-8: -x#3 - x#4 >= -1 +
-9: x#2 >= 0 +
-10: x#5 >= 0 +
-</code> +
-The facet defining inequalities can be interpreted as follows: +
-  * There are five trivial inequalities ''%%x#? >= 0%%''+
-  * The five original 'edge' inequalities ''%%x#i + x#j <= 1%%'' define facets. +
-  * We have the so-called //odd-cycle inequality// ''%%x#1 +x#2 + x#3 + x#4 + x#5 <= 2%%'', stating that at most two nodes in an (odd) cycle of length 5 can be selected. This inequality can be generalized by taking the sum of all variables in an odd cycle and restricting the sum to be less or equal to the size of the cycle minus 1 divided by 2. +
- +
-Of course, one can also use the usual polymake output, e.g., ''%%print $s->FACETS%%''+
- +
-This example showed one of the routine actions often performed by discrete optimizers. Of course, this action can also be performed by a script, which makes the computation a one-line command. +
- +
-Note that the size of instances that can be handled will probably be small. Usually, things become difficult from dimension 15 on, but it depends on the particular structure of your instances, i.e., on the number of facets and lattice points. +
- +
- +
-=== Unbounded Polyhedra === +
- +
-If the underlying polyhedron is unbounded, the approach above does not work anymore, since there are infinitely many lattice points. Arguably,  this case occurs less often than the bounded case, but it is a excellent show-case for polymake's potential. +
- +
-The following mathematical insights are important to treat the unbounded case. First, we have to assume that the data, i.e., the inequality description of the polyhedron ''P'', is rational; otherwise, we cannot expect a finite description of the convex hull. Second, we write ''P'' as the sum of a finite part ''Q'' and the recession cone ''C''. If the data is rational, the recession cone of ''P'' and of the integer hull coincide. Third, it suffices to generate the integer points in ''Q + R'', where ''R'' is the parallelotope generated by the rays of ''C''. Thus, ''R'' is generated by the Minkowski sum of the interval ''[0,1]'' and the generating rays. +
- +
-To illustrate the construction, consider the following example: +
-<code> +
-Minimize +
- obj:  x1 + x2 +
-Subject to +
-C1: x1 + x2 >= 0.5 +
-C2: x1 - 2 x2 <= 1.5 +
-C3: x2 - 2 x1 <= 1.5 +
-General +
- x1 x2 +
-End +
-</code> +
-{{ :tutorial:ip-unb.gif?300 | Picture of unbounded polyhedron (truncated at upper right)}} +
- +
-We now assume that the example is contained in the file ''unbounded.lp'' and proceed as above +
-<code> +
-polytope > $f = lp2poly('unbounded.lp'); +
-polytope > $pin = new Polytope<Rational>($f); +
-</code> +
-The visualization in the picture can be generated with ''%%$pin->VISUAL%%''. The lattice points can be shown with ''%%$pin->VISUAL->LATTICE_COLORED%%''+
- +
-We now extract the rays of the recession cone +
-<code> +
-polytope > $rays = $pin->VERTICES->minor($pin->FAR_FACE, All); +
-</code> +
-This command first computes all vertices of the polyhedron (this includes unbounded vertices); note that is involves a convex hull computation. The set ''FAR_FACE'' contains the indices of all vertices that are unbounded. The result is: +
-<code> +
-polytope > print $rays; +
-0 1 1/2 +
-0 1 2 +
-</code> +
-Thus, there are two rays that are generators of the recession cone. +
- +
-We now have to construct the Minkowski hull of all intervals ''[0,r]'' for each ray ''r'' (scaled to be integral). This can be done with the following code (possibly easier): +
-<code> +
-my $zero = unit_vector<Rational>($pin->DIM + 1, 0); +
-my $B = new Polytope<Rational>(POINTS=>$zero); +
-foreach my $r (@$rays) +
-+
-   my $M = new Matrix<Rational>(primitive($r)); +
-   $M->[0]->[0] = 1; +
-   $M = $M / $zero; +
-   my $ptemp = new Polytope<Rational>(POINTS=>$M); +
-   $B = minkowski_sum($B, $ptemp); +
-} +
-</code> +
-The code first generates a polytope ''B'' consisting of 0 only. It then takes each ray ''r'' in turn and creates ''[0,r]''. It then takes the Minkowski sum of this new polytope with ''B'' and stores the result in ''B''+
- +
-The next step is to obtain the bounded part ''Q'' of ''P'', by first extracting the bounded vertices and the creating a new polytope: +
-<code> +
-polytope > $Qpoints = $pin->VERTICES->minor($pin->BOUNDED_VERTICES, All); +
-polytope > $Q = new Polytope<Rational>(POINTS=>$boundedvert); +
-</code> +
- +
-The two polytopes are now combined: +
-<code> +
-polytope > $p = minkowski_sum($Q, $B); +
-</code> +
- +
-We now generate the lattice points (as in the bounded part) and add the rays from above: +
-<code> +
-polytope > $latticemat = new Matrix<Rational>($p->LATTICE_POINTS); +
-polytope > $newpoints = new Matrix<Rational>($latticemat / $rays); +
-</code> +
-Here, ''newpoints'' is a matrix that contains all lattice points in ''Q'' and the rays from above. +
- +
-Finally, the polytope we are interested in is: +
-<code> +
-polytope > $q = new Polytope(POINTS=>$newpoints, COORDINATE_LABELS=>$pin->COORDINATE_LABELS); +
-</code> +
- +
-The facets can be viewed as usual: +
-<code> +
-polytope > print_constraints($q); +
-Facets: +
-0: 2x1 - x2 >= -1 +
-1: 0 >= -1 +
-2: -x1 + 2x2 >= -1 +
-3: x1 + x2 >= 1 +
-</code> +
- +
-{{ :tutorial:ip-unb-integerhull.gif?300 |}+
- +
-Note that the upper right part (including the red vertices) arises from truncation of the polyhedron for visualization. +
- +
- +
-==== Mixed-Integer Case ==== +
- +
-Let us now briefly discuss how to proceed if there are variables that are allowed to be integral. In this case there are several different types of information that one might be interested in. Let us first consider the question of how to compute the convex hull of all feasible integral variables, i.e., we consider the projection to the integral variables and then consider the convex hull of all feasible solutions. We only consider the bounded case, i.e., the original polyhedron is bounded. +
- +
-Consider the following example: +
-<code> +
-Minimize +
- obj:  x1 + x2 +
-Subject to +
-C1: s1 - 10 x1 <= 0 +
-C2: s2 - 10 x2 <= 0 +
-C3: s1 + s2 <= 1.5 +
-C4: s1 + s2 >= 0.5 +
-Bounds +
- 0 <= s1 +
- 0 <= s2 +
- 0 <= x1 <= 1 +
- 0 <= x2 <= 1 +
-General +
- x1 x2 +
-End +
-</code> +
-In this example there are two integral variables ''x1'' and ''x2'', while ''s1'' and ''s2'' are continuous variables. Assuming the data is contained in the file ''mip.lp'', we proceed as follows: +
-<code> +
-polytope > $m=lp2poly('mip.lp'); +
-polytope > $p = new Polytope<Rational>($m); +
-</code> +
-We project the polyhedron in ''$p'' to the third and fourth variables as follows: +
-<code> +
-polytope > $q=projection($p, [3,4]); +
-</code> +
-We now construct the convex hull of all feasible points as above: +
-<code> +
-polytope > $s=new Polytope(POINTS=>$q->LATTICE_POINTS); +
-polytope > print_constraints($s); +
-Facets: +
-0:-x1>=-1 +
-1:-x2>=-1 +
-2:x1+x2>=1 +
-</code> +
-Thus, as expected, the convex hull equals the triangle with vertices ''{(0,1),(1,0),(1,1)}''+
- +
-===== Integral Polytopes and Total Unimodularity ===== +
- +
-As explained in the previous example, the integral points in a polytope are of particular interest in discrete optimization. These points are called //lattice points// in polymake and the corresponding convex hull //lattice polytope//. The handling of such polytopes is explained in more detail in the [[tutorial:lattice_polytopes_tutorial|Tutorial for Lattice Polytopes]]. +
- +
-Of particular interest for discrete optimization are properties of the orginal inequality system to define a lattice polytope, i.e., a polytope such that all of its vertices are integral. One particularly interesting case occurs if the matrix defining the polytope is //totally unimodular// and the right hand side is integral. +
- +
-Using the polymake extension [[https://github.com/xammy/unimodularity-test/wiki/Polymake-Extension|Unimodularity]] by Matthias Walter, this can be checked as illustrated in the following examples. +
- +
-==== Example: Explicit Matrix ==== +
- +
-In a first example, we directly create an integral matrix +
-<code> +
-polytope > $M=new Matrix<Integer>([[1,1,0,0],[1,0,1,0],[1,0,0,1]]); +
-</code> +
-The total unimodularity of this matrix can be checked as follows: +
-<code> +
-polytope > print is_totally_unimodular($M); +
-+
-</code> +
-Thus, the given matrix is totally unimodular. +
- +
-==== Example: Matrix from Input ==== +
- +
-In the second example, we reuse the file ''c3t'' from the example above. We read it into polymake: +
-<code> +
-polytope > $f=lp2poly('c3t.lp'); +
-polytope > $p = new Polytope<Rational>($f); +
-</code> +
-We now want to check whether the constraint matrix defined by the inequalities is totally unimodular (note that there are no equations in this example). Thus we first extract the inequality matrix without the first column (as an integer matrix) and then perform the test: +
-<code> +
-polytope > $A = new Matrix<Integer>($p->INEQUALITIES->minor(All, ~[0])); +
-polytope > print is_totally_unimodular($A); +
-+
-</code> +
-Thus, this matrix is totally unimodular as well. +
- +
-===== Total dual integrality ===== +
- +
-Computations with respect to total dual integrality (TDI) can also be performed in polymake. Currently (August 2013), you need the perpetual beta version of polymake to access this functionality. +
- +
-The main functions are: +
-  * The function ''totally_dual_integral'' takes an inequality system (as a matrix) and checks whether it is totally dual integral. +
-  * The function ''make_totally_dual_integral'' takes a polytope and returns a new polytope with inequalities that are TDI. +
- +
-Note that the input has to be full-dimensional in order to use these functions (this can be handled via ''ambient_lattice_normalization''). +
- +
-To demonstrate the behavior of these functions, consider the 5-cycle example from above again: +
-<code> +
-Maximize +
- obj: x#1 + x#2 + x#3 + x#4 + x#5 +
-Subject to +
- edge_1: x#2 + x#1 <= 1 +
- edge_2: x#3 + x#2 <= 1 +
- edge_3: x#4 + x#3 <= 1 +
- edge_4: x#5 + x#4 <= 1 +
- edge_5: x#1 + x#5 <= 1 +
-Bounds +
- 0 <= x#1 <= 1 +
- 0 <= x#2 <= 1 +
- 0 <= x#3 <= 1 +
- 0 <= x#4 <= 1 +
- 0 <= x#5 <= 1 +
-General +
- x#1 x#2 x#3 x#4 x#5 +
-End +
-</code> +
- +
-Let us test whether the inequality system of this example is TDI. Thus, we first load the data as usual: +
-<code> +
-polytope > $f = lp2poly('stab.lp'); +
-polytope > $p = new Polytope<Rational>($f); +
-</code> +
-We now extract the corresponding inequality system and check it for TDIness: +
-<code> +
-polytope> $M = new Matrix<Rational>($p->INEQUALITIES); +
-polytope > totally_dual_integral($M); +
-+
-</code> +
-Hence, the system is not TDI, which we expected from general theory, since we know that the polytope is not integral, but the system is integral. Consequently, let us construct a TDI-system for this polytope: +
-<code> +
-polytope > $q = make_totally_dual_integral($p); +
-polytope > print_constraints($q); +
-Inequalities: +
-0: x5 >= 0 +
-1: x4 >= 0 +
-2: x3 >= 0 +
-3: x2 >= 0 +
-4: x1 >= 0 +
-5: -x1 - x2 >= -1 +
-6: -x1 - x5 >= -1 +
-7: -x2 - x3 >= -1 +
-8: -x3 - x4 >= -1 +
-9: -x4 - x5 >= -1 +
-10: -x1 - x2 - x3 - x4 - x5 >= -5/2 +
-11: 0 >= -1 +
-</code> +
-As expected, the right hand side is non integral (otherwise, we know from general theory that the polytope would be integral as well). +
- +
-===== 0/1-Polytopes ===== +
- +
-===== Chvátal-Gomory Closure ===== +
- +
-In the following we want to briefly show how closures of polytopes with respect to certain cutting-plane operators can be computed. We consider the two well-known cutting-plane operators here. The first one is the Chvátal-Gomory generator and the second one is the Lift-and-project operator as defined by Balas. For simplicity we will assume that the considered polytope is full-dimensional.  +
- +
-==== Chvátal-Gomory Closure - Example 1 ==== +
- +
-We first consider the polytope from the stable set problem from above: +
-<code> +
-Maximize +
- obj: x#1 + x#2 + x#3 + x#4 + x#5 +
-Subject to +
- edge_1: x#2 + x#1 <= 1 +
- edge_2: x#3 + x#2 <= 1 +
- edge_3: x#4 + x#3 <= 1 +
- edge_4: x#5 + x#4 <= 1 +
- edge_5: x#1 + x#5 <= 1 +
-Bounds +
- 0 <= x#1 <= 1 +
- 0 <= x#2 <= 1 +
- 0 <= x#3 <= 1 +
- 0 <= x#4 <= 1 +
- 0 <= x#5 <= 1 +
-General +
- x#1 x#2 x#3 x#4 x#5 +
-End +
-</code> +
-As before we read in the file using ''lp2poly'': +
-<code> +
-polytope > $f = lp2poly('stab.lp'); +
-polytope > $p = new Polytope<Rational>($f); +
-</code> +
- +
-The Chvátal-Gomory closure of a polytope can be computed with the function ''gc_closure''. The function takes a full-dimensional polytope and returns a new polytope. This contains the system of inequlities defining the closure in the property ''INEQUALITIES''. For our example, we obtain: +
-<code> +
-polytope > $g = gc_closure($p); +
-polytope > print print_constraints($g); +
-Inequalities: +
-0: x5 >= 0 +
-1: x4 >= 0 +
-2: x3 >= 0 +
-3: x2 >= 0 +
-4: x1 >= 0 +
-5: -x1 - x2 >= -1 +
-6: -x1 - x5 >= -1 +
-7: -x2 - x3 >= -1 +
-8: -x3 - x4 >= -1 +
-9: -x4 - x5 >= -1 +
-10: -x1 - x2 - x3 - x4 - x5 >= -2 +
-11: 0 >= -1 +
-</code> +
-Let us check whether the resulting polytope is integral by examining its vertices: +
-<code> +
-polytope > print $g->VERTICES; +
-1 0 0 0 1 0 +
-1 0 0 0 0 1 +
-1 0 1 0 0 0 +
-1 0 0 0 0 0 +
-1 1 0 0 0 0 +
-1 0 0 1 0 0 +
-1 1 0 1 0 0 +
-1 0 1 0 0 1 +
-1 1 0 0 1 0 +
-1 0 1 0 1 0 +
-1 0 0 1 0 1 +
-</code> +
-Thus, in this case, we have obtained the integer hull by one step of the Chvatal-Gomory-closure. +
- +
-==== Chvátal-Gomory Closure - Example 2 ==== +
- +
-Let us now consider the classical example of a polytope with the vertices of simplex in d dimensions and the point 1/2 times (1, ..., 1). It can be shown that such a polytope has rank at least log(d) - 1, see [Pokutta, 2011]. In our example, we use d = 4: +
-<code> +
-polytope > $M = new Matrix<Rational>([[1,0,0,0,0],[1,1,0,0,0],[1,0,1,0,0],[1,0,0,1,0],[1,0,0,0,1],[1,1/2,1/2,1/2,1/2]]); +
-polytope > $t = new Polytope<Rational>(POINTS => $M); +
-polytope > $t1 = gc_closure($t); +
-polytope > $t1->FACETS; +
-polytope > print_constraints($t1); +
-Facets: +
-0: x4 >= 0 +
-1: x3 >= 0 +
-2: x2 >= 0 +
-3: x1 >= 0 +
-4: -x1 - x2 - x3 >= -1 +
-5: -x1 - x2 - x4 >= -1 +
-6: -x1 - x3 - x4 >= -1 +
-7: -x2 - x3 - x4 >= -1 +
-polytope > $t1->VERTICES; +
-polytope > print $t1->VERTICES; +
-1 1 0 0 0 +
-1 0 0 0 0 +
-1 1/3 1/3 1/3 1/3 +
-1 0 1 0 0 +
-1 0 0 1 0 +
-1 0 0 0 1 +
-</code> +
-Thus, one round was not enough to produce an integral polytope. However, one more round is enough: +
-<code> +
-polytope > $t2 = gc_closure($t1); +
-polytope > $t2->FACETS; +
-polytope > print_constraints($t2); +
-Facets: +
-0: x4 >= 0 +
-1: x3 >= 0 +
-2: x2 >= 0 +
-3: x1 >= 0 +
-4: -x1 - x2 - x3 - x4 >= -1 +
-</code> +
- +
-===== Lift-and-project closure ===== +
- +
-===== Other Software ===== +
- +
- +
  
  • user_guide/tutorials/optimization.1377201362.txt.gz
  • Last modified: 2014/01/03 15:45
  • (external edit)