|  |  D.5.16.3 discrepancy Procedure from libraryreszeta.lib(see  reszeta_lib).
 
Example:Usage:
discrepancy(L);
L = list of rings
 
Assume:
L is the output of resolution of singularities
Return:
discrepancies of the given resolution
 |  | LIB "reszeta.lib";
ring R=0,(x,y,z),dp;
ideal I=x2+y2+z3;
list re=resolve(I);
discrepancy(re);
==> 0,1,1
 | 
 
 |