|
4.23.4.31 setLinearForms
Syntax:
setLinearForms( cone c, intvec linearform )
setLinearForms( polytope c, intvec linearform )
Type:
Purpose:
- adds the information of a linear form to the cone
Example:
| intmat M[2][3]=
-1,0,0,
0,-1,0;
cone c=coneViaRays(M);
linearForms(c);
==>
intvec v=1,1,1;
setLinearForms(c,v);
linearForms(c);
==> 1
==> 1
==> 1
|
|