3 * Interface to class for extended truncated power series. */
6 * GiNaC Copyright (C) 1999-2000 Johannes Gutenberg University Mainz, Germany
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #ifndef __GINAC_SERIES_H__
24 #define __GINAC_SERIES_H__
27 #include "expairseq.h"
29 #ifndef NO_NAMESPACE_GINAC
31 #endif // ndef NO_NAMESPACE_GINAC
33 /** This class holds a extended truncated power series (positive and negative
34 * integer powers). It consists of expression coefficients (only non-zero
35 * coefficients are stored), an expansion variable and an expansion point.
36 * Other classes must provide members to convert into this type. */
37 class pseries : public basic
39 GINAC_DECLARE_REGISTERED_CLASS(pseries, basic)
41 // default constructor, destructor, copy constructor, assignment operator and helpers
45 pseries(const pseries &other);
46 const pseries &operator=(const pseries &other);
48 void copy(const pseries &other);
49 void destroy(bool call_parent);
53 pseries(const ex &rel_, const epvector &ops_);
55 // functions overriding virtual functions from base classes
57 basic *duplicate() const;
58 void print(std::ostream &os, unsigned upper_precedence = 0) const;
59 void printraw(std::ostream &os) const;
60 void printtree(std::ostream & os, unsigned indent) const;
61 unsigned nops(void) const;
64 int degree(const symbol &s) const;
65 int ldegree(const symbol &s) const;
66 ex coeff(const symbol &s, int n = 1) const;
67 ex collect(const symbol &s) const;
68 ex eval(int level=0) const;
69 ex evalf(int level=0) const;
70 ex series(const relational & r, int order, unsigned options = 0) const;
71 ex subs(const lst & ls, const lst & lr) const;
72 ex normal(lst &sym_lst, lst &repl_lst, int level = 0) const;
73 ex expand(unsigned options = 0) const;
75 ex derivative(const symbol & s) const;
77 // non-virtual functions in this class
79 ex convert_to_poly(bool no_order = false) const;
80 bool is_compatible_to(const pseries &other) const {return var.compare(other.var) == 0 && point.compare(other.point) == 0;}
81 bool is_zero(void) const {return seq.size() == 0;}
82 bool is_terminating(void) const;
83 ex add_series(const pseries &other) const;
84 ex mul_const(const numeric &other) const;
85 ex mul_series(const pseries &other) const;
86 ex power_const(const numeric &p, int deg) const;
87 pseries shift_exponents(int deg) const;
90 /** Vector of {coefficient, power} pairs */
93 /** Series variable (holds a symbol) */
96 /** Expansion point */
101 extern const pseries some_pseries;
102 extern const type_info & typeid_pseries;
104 /** Return a reference to the pseries object embedded in an expression.
105 * The result is undefined if the expression does not contain a pseries
106 * object at its top level.
108 * @param e expression
109 * @return reference to pseries object
110 * @see is_ex_of_type */
111 inline const pseries &ex_to_pseries(const ex &e)
113 return static_cast<const pseries &>(*e.bp);
116 /** Convert the pseries object embedded in an expression to an ordinary
117 * polynomial in the expansion variable. The result is undefined if the
118 * expression does not contain a pseries object at its top level.
120 * @param e expression
121 * @return polynomial expression
123 * @see pseries::convert_to_poly */
124 inline ex series_to_poly(const ex &e)
126 return (static_cast<const pseries &>(*e.bp).convert_to_poly(true));
129 inline bool is_terminating(const pseries & s)
131 return s.is_terminating();
134 #ifndef NO_NAMESPACE_GINAC
136 #endif // ndef NO_NAMESPACE_GINAC
138 #endif // ndef __GINAC_SERIES_H__