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

📄 reduced_sturm_sequence.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/Reduced_Sturm_sequence.h $// $Id: Reduced_Sturm_sequence.h 28567 2006-02-16 14:30:13Z lsaboret $// //// Author(s)     : Daniel Russel <drussel@alumni.princeton.edu>#ifndef CGAL_POLYNOMIAL_INTERNAL_REDUCED_STURM_SEQUENCE_H#define CGAL_POLYNOMIAL_INTERNAL_REDUCED_STURM_SEQUENCE_H#include <CGAL/Polynomial/basic.h>#include <CGAL/Polynomial/internal/Sign_variations_counter.h>#include <CGAL/Polynomial/internal/Rational/Sturm_sequence_base.h>/*!  \file Monic_Sturm_sequence.h A non-filtered Sturm sequence class  that consists monic polynomials.*/CGAL_POLYNOMIAL_BEGIN_INTERNAL_NAMESPACEtemplate<class Kernel_t>class Reduced_Sturm_sequence: public Sturm_sequence_base<Kernel_t>{    protected:        typedef Sturm_sequence_base<Kernel_t>    Base;    public:        typedef typename Base::Kernel            Kernel;        typedef typename Base::Polynomial        Polynomial;        typedef typename Base::NT                NT;    protected:        static NT abs(const NT& x) {            return CGAL::abs(x);        }        static NT power(const NT& x, int n) {            if ( n < 0 ) { return NT(1) / power(x, -n); }            NT y = x;            NT z(1);//  z = x;            int m = n;            while (n > 1) {                m = m / 2;                if ( n > 2 * m ) {                    z = z * y;                }                y = y * y;                n = m;            }            z = z * y;            return z;        }        void compute_sequence(const Polynomial& p, const Polynomial& q) {// I HAVE TO FIX THE BUG THAT EXISTS HERE; THE FOLLOWING CODE MAY// NOT WORK CORRECTLY IF p IS THE ZERO POLYNOMIAL AND q IS NOT// IN GENERAL I HAVE TO CONSIDER ALL THE LIMITING CASES            if ( p.degree() >= 0 ) {                add( p );                this->size_++;            }            if ( q.degree() == -1 ) { return; }            this->add( q );            this->size_++;            if ( p.degree() < q.degree() ) {                this->add( -this->seq_[0] );                this->size_++;            }            Polynomial r;            int deg1 = this->seq_[this->size_ - 2].degree();            int deg2 = this->seq_[this->size_ - 1].degree();            NT a = power(this->seq_[this->size_ - 1][deg2], deg1 - deg2 + 1);            r = -this->k_.remainder_object()(a * this->seq_[this->size_ - 2],                this->seq_[this->size_ - 1]);            if ( r.is_zero() ) { return; }            this->normalize(r, NT());            this->add( r );            this->size_++;            NT b = a;            while ( true ) {                deg1 = this->seq_[this->size_ - 2].degree();                deg2 = this->seq_[this->size_ - 1].degree();                a = power(this->seq_[this->size_ - 1][deg2], deg1 - deg2 + 1);                r = -this->k_.remainder_object()(a * this->seq_[this->size_ - 2],                    this->seq_[this->size_ - 1]);                if ( r.is_zero() ) { break; }// THE FOLLOWING HACK HAS BEEN DONE SO THAT MP_Float HOPEFULLY// DOES NOT RUN OUT OF EXPONENT BITS WHEN THE STURM SEQUENCE IS// COMPUTED                this->normalize(r, NT());                this->add( r / b );                this->size_++;                b = a;            }        }    public:        Reduced_Sturm_sequence() : Base() {}        Reduced_Sturm_sequence(const Polynomial& p, const Polynomial& q,            const Kernel &k)        : Base(p, q, k) {            compute_sequence(p, q);        }};CGAL_POLYNOMIAL_END_INTERNAL_NAMESPACE#endif                                            // CGAL_POLYNOMIAL_INTERNAL_REDUCED_STURM_SEQUENCE_H

⌨️ 快捷键说明

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