Top
Back: from_boolean_constant
Forward: direct_from_boolean_poly
FastBack:
FastForward:
Up: polybori_lib
Top: Singular Manual
Contents: Table of Contents
Index: Index
About: About this document

D.14.7.10 from_boolean_poly

Procedure from library polybori.lib (see polybori_lib).

Usage:
from_boolean_poly(ps[, dir]); ps polynomial, dir integer zero or one

Return:
default: polynomial ps in the representation of the boolean ring

Note:
via the optional input dir, one can choose the computation method (either direct[dir==0] or recursive[dir==1]). default: direct

Example:
 
LIB "polybori.lib";
ring r=0,(x,y,z),Dp;
def rb=boolean_poly_ring(r);
poly f=x^2+2*y+5*z^4;
bpoly pp=f;
from_boolean_poly(pp);
from_boolean_poly(pp,1);
ring r2=5,(x,y,z),Dp;
def rb2=boolean_poly_ring(r2);
poly f2=x+y+z;
bpoly pp2=f2;
from_boolean_poly(pp);
from_boolean_poly(pp,1);
See also: boolean_ideal; boolean_std.


Top Back: from_boolean_constant Forward: direct_from_boolean_poly FastBack: FastForward: Up: polybori_lib Top: Singular Manual Contents: Table of Contents Index: Index About: About this document
            User manual for Singular version 4.3.2, 2023, generated by texi2html.