|  |  D.5.2.12 NumPrimDecom Procedure from librarynumerDecom.lib(see  numerDecom_lib).
 
Example:Usage:
NumPrimDecom(ideal I,int d); I ideal, d order of the deflation
Return:
lists of the numerical primary decomposition
 |  | LIB "numerDecom.lib";
ring r=0,(x,y),dp;
poly f1=yx;
poly f2=x2;
ideal I=f1,f2;
def W=NumPrimDecom(I,1);
setring W;
w(1);
==> 1-Witness point set (one point)
w(2);
==> 1-Witness point set (one point)
 | 
 |