diff --git a/Nef_2/include/CGAL/Nef_2/Polynomial.h b/Nef_2/include/CGAL/Nef_2/Polynomial.h index 826bbaef633..5add3104818 100644 --- a/Nef_2/include/CGAL/Nef_2/Polynomial.h +++ b/Nef_2/include/CGAL/Nef_2/Polynomial.h @@ -738,14 +738,14 @@ class Polynomial : /*{\Xtext \headerline{Static member functions}}*/ - CGAL_EXPORT static Polynomial gcd + static Polynomial gcd (const Polynomial& p1, const Polynomial& p2); /*{\Xstatic returns the greatest common divisor of |p1| and |p2|. \textbf{Note} that |int=int| quickly leads to overflow errors when using this operation. \precond Requires |int| to be a unique factorization domain, i.e. to provide a |gcd| operation.}*/ - CGAL_EXPORT static void pseudo_div + static void pseudo_div (const Polynomial& f, const Polynomial& g, Polynomial& q, Polynomial& r, int& D); /*{\Xstatic implements division with remainder on polynomials of @@ -753,7 +753,7 @@ class Polynomial : factorization domain, i.e., there exists a |gcd| operation and an integral division operation on |int|.}*/ - CGAL_EXPORT static void euclidean_div + static void euclidean_div (const Polynomial& f, const Polynomial& g, Polynomial& q, Polynomial& r); /*{\Xstatic implements division with remainder on polynomials of @@ -1040,14 +1040,14 @@ determines the sign for the limit process $x \rightarrow \infty$. /*{\Xtext \headerline{Static member functions}}*/ - CGAL_EXPORT static Polynomial gcd + static Polynomial gcd (const Polynomial& p1, const Polynomial& p2); /*{\Xstatic returns the greatest common divisor of |p1| and |p2|. \textbf{Note} that |double=int| quickly leads to overflow errors when using this operation. \precond Requires |double| to be a unique factorization domain, i.e. to provide a |gdc| operation.}*/ - CGAL_EXPORT static void pseudo_div + static void pseudo_div (const Polynomial& f, const Polynomial& g, Polynomial& q, Polynomial& r, double& D); /*{\Xstatic implements division with remainder on polynomials of @@ -1055,7 +1055,7 @@ determines the sign for the limit process $x \rightarrow \infty$. factorization domain, i.e., there exists a |gcd| operation and an integral division operation on |double|.}*/ - CGAL_EXPORT static void euclidean_div + static void euclidean_div (const Polynomial& f, const Polynomial& g, Polynomial& q, Polynomial& r); /*{\Xstatic implements division with remainder on polynomials of