mirror of https://github.com/CGAL/cgal
Namespace specification added for gcd calls.
This commit is contained in:
parent
2540187f71
commit
cb10c9104a
|
|
@ -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;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue