|
D.16.1.30 minimalValue
Syntax:
Polymake::minimalValue( polytope p, intvec v )
Assume:
- v lies in the dual tail cone of p.
Type:
- int
Purpose:
- the minimal value of the linear form v on p.
Note:
- The first coordinate of v corresponds to a shift of the minimal value since p is considered as a polytope in the plane (first coordinate) = 1.
Example:
| intmat M[3][3]=1,1,0, 1,0,1, 1,-1,-1;
intvec v = 0,1,1;
polytope p = polytopeViaPoints(M);
Polymake::minimalValue(p,v);
v = -5,1,1;
Polymake::minimalValue(p,v);
|
|