mirror of https://github.com/CGAL/cgal
rm warning
This commit is contained in:
parent
acf90a5153
commit
a1b9caf430
|
|
@ -7,9 +7,9 @@
|
||||||
// $Id$
|
// $Id$
|
||||||
//
|
//
|
||||||
//
|
//
|
||||||
// Author(s) : Arno Eigenwillig <arno@mpi-inf.mpg.de>
|
// Author(s) : Michael Hemmer <hemmer@informatik.uni-mainz.de>
|
||||||
|
// Arno Eigenwillig <arno@mpi-inf.mpg.de>
|
||||||
// Michael Seel <seel@mpi-inf.mpg.de>
|
// Michael Seel <seel@mpi-inf.mpg.de>
|
||||||
// Michael Hemmer <hemmer@informatik.uni-mainz.de>
|
|
||||||
//
|
//
|
||||||
// ============================================================================
|
// ============================================================================
|
||||||
|
|
||||||
|
|
@ -1254,7 +1254,7 @@ void Polynomial<NT>::pseudo_division(
|
||||||
R.simplify_coefficients();
|
R.simplify_coefficients();
|
||||||
e--;
|
e--;
|
||||||
delta = R.degree() - B.degree();
|
delta = R.degree() - B.degree();
|
||||||
} while (delta > 0 || delta == 0 && !R.is_zero());
|
} while (delta > 0 || (delta == 0 && !R.is_zero()));
|
||||||
// funny termination condition because deg(0) = 0, not -\infty
|
// funny termination condition because deg(0) = 0, not -\infty
|
||||||
|
|
||||||
NT q = POLYNOMIAL::ipower(d, e);
|
NT q = POLYNOMIAL::ipower(d, e);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue