From 995e1796e4eb0ac92418f50eb0f83d149e15efe2 Mon Sep 17 00:00:00 2001 From: Sebastian Limbach Date: Tue, 13 May 2008 10:02:40 +0000 Subject: [PATCH] div_utcf calls adapted to new interface (bool-parameter dropped). --- .../CGAL/Polynomial/polynomial_gcd_implementations.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Polynomial/include/CGAL/Polynomial/polynomial_gcd_implementations.h b/Polynomial/include/CGAL/Polynomial/polynomial_gcd_implementations.h index e52aeecb32c..cc242015673 100644 --- a/Polynomial/include/CGAL/Polynomial/polynomial_gcd_implementations.h +++ b/Polynomial/include/CGAL/Polynomial/polynomial_gcd_implementations.h @@ -150,8 +150,8 @@ Polynomial gcd_utcf_Integral_domain( Polynomial p1, Polynomial p2){ NT gcdcont = CGALi::gcd_utcf_(p1c, p2c); // compute gcd of primitive parts - p1 = div_utcf(p1, p1c, true); - p2 = div_utcf(p2, p2c, true); + p1 = div_utcf(p1, p1c/*, true*/); + p2 = div_utcf(p2, p2c/*, true*/); Polynomial q, r; @@ -192,7 +192,7 @@ Polynomial gcd_utcf_Integral_domain( Polynomial p1, Polynomial p2){ } #endif - p2 = CGALi::div_utcf(p2, content_utcf_(p2), true); + p2 = CGALi::div_utcf(p2, content_utcf_(p2)/*, true*/); // combine both parts to proper gcd p2 *= gcdcont;