|
D.16.1.27 maximalFace
Syntax:
Polymake::maximalFace( polytope p, intvec v )
Assume:
- v lies in the negative dual tail cone of p.
Type:
- intmat
Purpose:
- intmat, whose rows are the vertices of the face of p on which the linear form v is maximal.
Note:
- The first coordinate of v corresponds to a shift of the maximal value since p is considered as a polytope in the plane (first coordinate) = 1. Hence the maximal face is independent of the first coordinate of v.
Example:
| intmat M[3][3]=1,1,0, 1,0,1, 1,-1,-1;
intvec v = 0,1,1;
polytope p = polytopeViaPoints(M);
Polymake::maximalFace(p,v);
v = -5,1,1;
Polymake::maximalFace(p,v);
|
|