|  |  7.10.4.3 lpVarBlockSize Procedure from libraryfreegb.lib(see  freegb_lib).
 
Example:Usage:
lpVarBlockSize(R); R a letterplace ring
Return:
int
Purpose:
returns the variable block size of the letterplace ring, that is the number of variables of the original ring.
 |  | LIB "freegb.lib";
ring r = 0,(x,y,z),dp;
ring R = freeAlgebra(r, 7);
lpVarBlockSize(R);
==> 3
 | 
 
 |