|
D.16.1.13 isBounded
Syntax:
Polymake::isBounded( polytope p )
Type:
- int
Purpose:
- 1 if p is bounded, 0 otherwise.
Example:
| intmat M[4][4]=1,1,0,0, 1,0,1,0, 1,0,0,1, 1,-1,-1,-1;
polytope p = polytopeViaPoints(M);
Polymake::isBounded(p);
M=1,1,0,0, 1,0,1,0, 0,0,0,1, 1,-1,-1,-1;
p = polytopeViaPoints(M);
Polymake::isBounded(p);
|
|