|  |  D.12.7.6 boundDes Procedure from libraryrootsur.lib(see  rootsur_lib).
 
Example:Usage:
boundDes(p); poly p
Return:
int: an upper bound for the number of real roots of p, with
the same parity as the actual number of real roots of p.
Assume:
p is a univariate polynomial with rational coefficients
 See also:
 boundBuFou.|  | LIB "rootsur.lib";
ring r = 0,x,dp;
poly p = (x+2)*(x-1)*(x-5);
boundDes(p);
==> 3
p = p*(x2+1);
boundDes(p);
==> 5
 | 
 
 |