|
4.22.3.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:
| LIB"gfanlib.so";
intmat M[2][3]=
-1,0,0,
0,-1,0;
cone c=coneViaPoints(M);
getLinearForms(c);
==>
intvec v=1,1,1;
setLinearForms(c,v);
getLinearForms(c);
==> 1,1,1
|
|