|
D.13.2.27 isBounded
Procedure from library polymake.lib (see polymake_lib).
- Usage:
- isBounded(p); p polytope
- Return:
- 1, if p is bounded; 0 otherwise
Example:
| LIB "polymake.lib";
==> Welcome to polymake version
==> Copyright (c) 1997-2015
==> Ewgenij Gawrilow, Michael Joswig (TU Darmstadt)
==> http://www.polymake.org
intmat M[4][4]=
1,1,0,0,
1,0,1,0,
1,0,0,1,
1,-1,-1,-1;
polytope p = polytopeViaPoints(M);
isBounded(p);
==> 1
M=
1,1,0,0,
1,0,1,0,
0,0,0,1,
1,-1,-1,-1;
p = polytopeViaPoints(M);
isBounded(p);
==> 0
|
|