⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pseudo_quotient.h

📁 很多二维 三维几何计算算法 C++ 类库
💻 H
字号:
// 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; version 2.1 of the License.// See the file LICENSE.LGPL distributed with CGAL.//// 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: svn+ssh://scm.gforge.inria.fr/svn/cgal/branches/CGAL-3.3-branch/Kinetic_data_structures/include/CGAL/Polynomial/internal/Rational/Pseudo_quotient.h $// $Id: Pseudo_quotient.h 29468 2006-03-13 22:35:27Z drussel $// //// Author(s)     : Daniel Russel <drussel@alumni.princeton.edu>#ifndef CGAL_POLYNOMIAL_INTERNAL_PSEUDO_QUOTIENT_H#define CGAL_POLYNOMIAL_INTERNAL_PSEUDO_QUOTIENT_H#include <CGAL/Polynomial/basic.h>#include <vector>CGAL_POLYNOMIAL_BEGIN_INTERNAL_NAMESPACEtemplate<class Polynomial>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<NT> r_coef(m+1);        std::vector<NT> q_coef(divdeg+1);// compute the powers of v[n] from 0 to m-n        std::vector<NT> 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;    }};CGAL_POLYNOMIAL_END_INTERNAL_NAMESPACE#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -