// Copyright (c) 2005 Stanford University (USA). // All rights reserved. // // This file is part of CGAL (www.cgal.org); you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License as // published by the Free Software Foundation; either version 3 of the License, // or (at your option) any later version. // // Licensees holding a valid commercial license may use this file in // accordance with the commercial license agreement provided with the software. // // This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. // // $URL$ // $Id$ // // // Author(s) : Daniel Russel #ifndef CGAL_POLYNOMIAL_INTERNAL_PSEUDO_QUOTIENT_H #define CGAL_POLYNOMIAL_INTERNAL_PSEUDO_QUOTIENT_H #include #include namespace CGAL { namespace POLYNOMIAL { namespace internal { template struct Pseudo_quotient { typedef typename Polynomial::NT NT; typedef Polynomial result_type; typedef Polynomial argument_type; typedef Polynomial argument_type1; typedef Polynomial argument_type2; void write(std::ostream &out) const { out << "pquo"; } Polynomial operator()(const Polynomial& t, const Polynomial& v) const { CGAL_Polynomial_precondition( t.degree() >= v.degree() ); CGAL_Polynomial_precondition( v.degree()>=1 ); int m = t.degree(); int n = v.degree(); int divdeg = m - n; std::vector r_coef(m+1); std::vector q_coef(divdeg+1); // compute the powers of v[n] from 0 to m-n std::vector pow(divdeg+1); pow[0] = NT(1); for (int i = 1; i <= divdeg; i++) { pow[i] = pow[i-1] * v[n]; } // initialize r for (int i = 0; i < divdeg; i++) { r_coef[i] = t[i] * pow[divdeg - i]; } for (int i = divdeg; i <= m; i++) { r_coef[i] = t[i]; } // compute the pseudo-quotient for (int k = divdeg; k >= 0; k--) { q_coef[k] = r_coef[n + k] * pow[k]; for (int j = n + k - 1; j >= k; j--) { r_coef[j] = v[n] * r_coef[j] - r_coef[n + k] * v[j - k]; } } pow.clear(); Polynomial q(q_coef.begin(), q_coef.end()); return q; } }; } } } //namespace CGAL::POLYNOMIAL::internal #endif