algebramix_doc 0.3
|
#include <polynomial.hpp>
Definition at line 279 of file polynomial.hpp.
polynomial_iterator_rep | ( | const polynomial< C, V > & | P2 | ) | [inline] |
Definition at line 287 of file polynomial.hpp.
: iterator_rep<C> (CF(P2)), P(P2), i(0) {}
void advance | ( | ) | [inline, protected] |
Definition at line 284 of file polynomial.hpp.
{ i++; }
C current | ( | ) | [inline, protected] |
Definition at line 285 of file polynomial.hpp.
{ return P[i]; }
bool is_busy | ( | ) | [inline, protected] |
Definition at line 283 of file polynomial.hpp.
References mmx::deg().
{ return ((int) i) <= deg (P); }