|
D.16.1.3 facetVertexLatticeDistances
Syntax:
Polymake::facetVertexLatticeDistances( polytope p )
Assume:
- p bounded
Type:
- intmat
Purpose:
- intmat, which encodes the lattice distances between vertices (columns) and facets (rows) of p.
Example:
| intmat M[4][3]=1,2,0, 1,0,1, 1,2,1, 1,0,0;
polytope p = polytopeViaPoints(M);
intmat D = Polymake::facetVertexLatticeDistances(p);
D;
|
|