/* -*- C++ -*- * * This file is a part of LEMON, a generic C++ optimization library * * Copyright (C) 2003-2006 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * * Permission to use, modify and distribute this software is granted * provided that this copyright notice appears in all copies. For * precise terms see the accompanying LICENSE file. * * This software is provided "AS IS" with no warranty of any kind, * express or implied, and with no claim as to its suitability for any * purpose. * */ #ifndef LEMON_BEZIER_H #define LEMON_BEZIER_H ///\ingroup misc ///\file ///\brief A simple class implementing polynomials. /// ///\author Alpar Juttner #include namespace lemon { /// \addtogroup misc /// @{ ///Simple polinomial class ///This class implements a polynomial where the coefficients are of ///type \c T. /// ///The coefficients are stored in an std::vector. template class Polynomial { std::vector _coeff; public: ///Construct a polynomial of degree \c d. explicit Polynomial(int d=0) : _coeff(d+1) {} ///\e template Polynomial(const U &u) : _coeff(1,u) {} ///\e template Polynomial(const Polynomial &u) : _coeff(u.deg()+1) { for(int i=0;i::reference operator[](int d) { return _coeff[d]; } ///Returns (as a const reference) the coefficient of degree \c d. typename std::vector::const_reference operator[](int d) const {return _coeff[d];} ///Substitute the value u into the polinomial. ///Substitute the value u into the polinomial. ///The calculation will be done using type \c R. ///The following examples shows the usage of the template parameter \c R. ///\code /// Polynomial > line(1); /// line[0]=dim2::Point(12,25); /// line[1]=dim2::Point(2,7); /// ... /// dim2::Point d = line.subst >(23.2); ///\endcode /// ///\code /// Polynomial p; /// Polynomial q; /// ... /// Polynomial s = p.subst >(q); ///\endcode template R subst(const U &u) const { typename std::vector::const_reverse_iterator i=_coeff.rbegin(); R v=*i; for(++i;i!=_coeff.rend();++i) v=v*u+*i; return v; } ///Substitute the value u into the polinomial. ///Substitute the value u into the polinomial. ///The calculation will be done using type \c T ///(i.e. using the type of the coefficients.) template T operator()(const U &u) const { return subst(u); } ///Derivate the polynomial (in place) Polynomial &derivateMyself() { for(int i=1;i0;i--) _coeff[i]=_coeff[i-1]/i; _coeff[0]=0; return *this; } ///Return the integrate of the polynomial Polynomial integrate() const { Polynomial tmp(deg()+1); tmp[0]=0; for(int i=0;i Polynomial &operator+=(const Polynomial &p) { if(p.deg()>deg()) _coeff.resize(p.deg()+1); for(int i=0;i<=int(std::min(deg(),p.deg()));i++) _coeff[i]+=p[i]; return *this; } ///\e template Polynomial &operator-=(const Polynomial &p) { if(p.deg()>deg()) _coeff.resize(p.deg()+1); for(int i=0;i<=std::min(deg(),p.deg());i++) _coeff[i]-=p[i]; return *this; } ///\e template Polynomial &operator+=(const U &u) { _coeff[0]+=u; return *this; } ///\e template Polynomial &operator-=(const U &u) { _coeff[0]+=u; return *this; } ///\e template Polynomial &operator*=(const U &u) { for(typename std::vector::iterator i=_coeff.begin();i!=_coeff.end();++i) *i*=u; return *this; } ///\e template Polynomial &operator/=(const U &u) { for(typename std::vector::iterator i=_coeff.begin();i!=_coeff.end();++i) *i/=u; return *this; } }; ///Equality comparison ///\relates Polynomial ///\warning Two polynomials are defined to be unequal if their degrees differ, ///even if the non-zero coefficients are the same. template bool operator==(const Polynomial &u,const Polynomial &v) { if(u.deg()!=v.deg()) return false; for(int i=0;i<=u.deg();i++) if(u[i]!=v[i]) return false; return true; } ///Non-equality comparison ///\relates Polynomial ///\warning Two polynomials are defined to be unequal if their degrees differ, ///even if the non-zero coefficients are the same. template bool operator!=(const Polynomial &u,const Polynomial &v) { return !(u==v); } ///\e ///\relates Polynomial /// template Polynomial operator+(const Polynomial &u,const Polynomial &v) { Polynomial tmp=u; tmp+=v; return tmp; } ///\e ///\relates Polynomial /// template Polynomial operator-(const Polynomial &u,const Polynomial &v) { Polynomial tmp=u; tmp-=v; return tmp; } ///\e ///\relates Polynomial /// template Polynomial operator*(const Polynomial &u,const Polynomial &v) { Polynomial tmp(u.deg()+v.deg()); for(int i=0;i<=v.deg();i++) for(int j=0;j<=u.deg();j++) tmp[i+j]+=v[i]*u[j]; return tmp; } ///\e ///\relates Polynomial /// template Polynomial operator+(const Polynomial &u,const V &v) { Polynomial tmp=u; tmp+=v; return tmp; } ///\e ///\relates Polynomial /// template Polynomial operator+(const V &v,const Polynomial &u) { Polynomial tmp=u; tmp+=v; return tmp; } ///\e ///\relates Polynomial /// template Polynomial operator-(const Polynomial &u,const V &v) { Polynomial tmp=u; tmp-=v; return tmp; } ///\e ///\relates Polynomial /// template Polynomial operator-(const Polynomial &u) { Polynomial tmp(u.deg()); for(int i=0;i<=u.deg();i++) tmp[i]=-u[i]; return tmp; } ///\e ///\relates Polynomial /// template Polynomial operator-(const V &v,const Polynomial &u) { Polynomial tmp=-u; tmp+=v; return tmp; } ///\e ///\relates Polynomial /// template Polynomial operator*(const Polynomial &u,const V &v) { Polynomial tmp=u; tmp*=v; return tmp; } ///\e ///\relates Polynomial /// template Polynomial operator*(const V &v,const Polynomial &u) { Polynomial tmp=u; tmp*=v; return tmp; } ///\e ///\relates Polynomial /// template Polynomial operator/(const Polynomial &u,const V &v) { Polynomial tmp=u; tmp/=v; return tmp; } /// @} } //END OF NAMESPACE LEMON #endif // LEMON_POLYNOMIAL_H