#include <series.hpp>
Definition at line 412 of file series.hpp.
polynomial_series_rep | ( | const polynomial< C > & | P2 | ) | [inline] |
Definition at line 415 of file series.hpp.
00415 : 00416 Series_rep (CF(P2)), P (as<Polynomial> (P2)) {} polynomial_series_rep (const polynomial<C>& P2, const Format& fm):
polynomial_series_rep | ( | const polynomial< C > & | P2, | |
const format< C > & | fm | |||
) | [inline] |
Definition at line 417 of file series.hpp.
00417 : 00418 Series_rep (fm), P (as<Polynomial> (P2)) {} syntactic expression (const syntactic& z) const {
syntactic expression | ( | const syntactic & | z | ) | const [inline] |
Definition at line 419 of file series.hpp.
References mmx::flatten().
00419 { 00420 return flatten (P, z); }
C next | ( | ) | [inline] |
Definition at line 423 of file series.hpp.
References mmx::N().
00423 { 00424 return this->n < N(P)? P[this->n]: this->zero (); }
bool test_exact_zero | ( | ) | const [inline] |
Definition at line 421 of file series.hpp.
References mmx::is_exact_zero().
00421 { 00422 return is_exact_zero (P); }