diff --git a/Polynomial/include/CGAL/polynomial_utils.h b/Polynomial/include/CGAL/polynomial_utils.h index 86ffcb5916c..69662eb9849 100644 --- a/Polynomial/include/CGAL/polynomial_utils.h +++ b/Polynomial/include/CGAL/polynomial_utils.h @@ -197,6 +197,14 @@ square_free_factorize(const Polynomial_d& p, OutputIterator oi){ typedef Polynomial_traits_d PT; return typename PT::Square_free_factorize()(p,oi); } + +template inline +OutputIterator +square_free_factorize(const Polynomial_d& p, OutputIterator oi, const typename Polynomial_traits_d::Innermost_coefficient_type& a){ + typedef Polynomial_traits_d PT; + return typename PT::Square_free_factorize()(p,oi,a); +} + // MakeSquareFree CGAL_UNARY_POLY_FUNCTION(Make_square_free, make_square_free) // IsSquareFree