Namespace specification added for gcd calls.

This commit is contained in:
Sebastian Limbach 2008-04-03 10:06:30 +00:00
parent 2540187f71
commit cb10c9104a
1 changed files with 2 additions and 2 deletions

View File

@ -172,7 +172,7 @@ inline int square_free_factorization_for_regular_polynomial_
POLY a = canonicalize_polynomial(p); POLY a = canonicalize_polynomial(p);
POLY b = diff(a); POLY b = diff(a);
POLY c = gcd_utcf(a, b); POLY c = CGAL::CGALi::gcd_utcf(a, b);
if (c == Coeff(1)) { if (c == Coeff(1)) {
*factors = a; *factors = a;
@ -201,7 +201,7 @@ inline int square_free_factorization_for_regular_polynomial_
POLY g; POLY g;
while (!z.is_zero()) { while (!z.is_zero()) {
g = gcd_utcf(w, z); g = CGAL::CGALi::gcd_utcf(w, z);
if (g.degree() > 0) { if (g.degree() > 0) {
*factors++ = g; *factors++ = g;
*multiplicities++ = i; *multiplicities++ = i;