|  |  D.14.7.9 from_boolean_constant Procedure from librarypolybori.lib(see  polybori_lib).
 
Example:Usage:
from_boolean_constant(pb); pb pyobject
Return:
constant polynomial
 See also:
 boolean_ideal;
 boolean_std.|  | LIB "polybori.lib";
ring rs=0,(x,y,z),Dp;
def rsb=boolean_poly_ring(rs);
poly f=(x+y)*x+z;
bpoly pp=f;
from_boolean_constant(0);
from_boolean_constant(1);
from_boolean_constant(pp);
 | 
 
 |