|
D.16.1.18 isNormal
Syntax:
Polymake::isNormal( polytope p )
Type:
- int
Purpose:
- 1 if the projective toric variety defined by p is projectively normal, 0 otherwise.
Example:
| intmat M[6][4]=1,1,1,2, 1,-1,-1,-2, 1,1,0,0, 1,-1,0,0, 1,0,1,0, 1,0,-1,0;
polytope p = polytopeViaPoints(M);
Polymake::isNormal(p);
|
|