Home | History | Annotate | Download | only in Polynomials

Lines Matching refs:poly

43     inline void setPolynomial( const OtherPolynomial& poly ){
44 m_roots.resize(poly.size()); }
48 inline PolynomialSolverBase( const OtherPolynomial& poly ){
49 setPolynomial( poly() ); }
342 void compute( const OtherPolynomial& poly )
344 assert( Scalar(0) != poly[poly.size()-1] );
345 internal::companion<Scalar,_Deg> companion( poly );
353 inline PolynomialSolver( const OtherPolynomial& poly ){
354 compute( poly ); }
374 void compute( const OtherPolynomial& poly )
376 assert( Scalar(0) != poly[poly.size()-1] );
377 m_roots[0] = -poly[0]/poly[poly.size()-1];