|  |  D.13.1.41 span Procedure from librarygfan.lib(see  gfan_lib).
 
Example:Usage:
span(c); c cone
Return:
bigintmat, unique irredundant equations of c
Note:
the name 'span' was chosen to be in line with polymake's nomenclature
 |  | LIB "gfan.lib";
intmat M[3][5]=
1,0,0,0,0,
0,1,0,0,0,
0,0,1,0,0;
cone c=coneViaPoints(M);
bigintmat Eq=span(c);
print(Eq);
==> 0,0,0,-1, 0,
==> 0,0,0, 0,-1
 | 
 
 |