]> www.ginac.de Git - ginac.git/blob - ginac/pseries.h
- changed old-style power() to new-style pow()
[ginac.git] / ginac / pseries.h
1 /** @file pseries.h
2  *
3  *  Interface to class for extended truncated power series. */
4
5 /*
6  *  GiNaC Copyright (C) 1999-2000 Johannes Gutenberg University Mainz, Germany
7  *
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.
12  *
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.
17  *
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
21  */
22
23 #ifndef __GINAC_SERIES_H__
24 #define __GINAC_SERIES_H__
25
26 #include <ginac/basic.h>
27 #include <ginac/expairseq.h>
28
29 #ifndef NO_GINAC_NAMESPACE
30 namespace GiNaC {
31 #endif // ndef NO_GINAC_NAMESPACE
32
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
38 {
39     GINAC_DECLARE_REGISTERED_CLASS(pseries, basic)
40
41     // default constructor, destructor, copy constructor, assignment operator and helpers
42 public:
43     pseries();
44     ~pseries();
45     pseries(pseries const &other);
46     pseries const &operator=(pseries const &other);
47 protected:
48     void copy(pseries const &other);
49     void destroy(bool call_parent);
50
51     // other constructors
52 public:
53     pseries(ex const &var_, ex const &point_, epvector const &ops_);
54
55     // functions overriding virtual functions from base classes
56 public:
57     basic *duplicate() const;
58     void print(ostream &os, unsigned upper_precedence=0) const;
59     void printraw(ostream &os) const;
60     int degree(symbol const &s) const;
61     int ldegree(symbol const &s) const;
62     ex coeff(symbol const &s, int const n=1) const;
63     ex eval(int level=0) const;
64     ex evalf(int level=0) const;
65     ex normal(lst &sym_lst, lst &repl_lst, int level=0) const;
66     ex diff(symbol const & s) const;
67     ex subs(lst const & ls, lst const & lr) const;
68
69     // non-virtual functions in this class
70 public:
71     ex convert_to_poly(bool no_order = false) const;
72     bool is_compatible_to(const pseries &other) const {return var.compare(other.var) == 0 && point.compare(other.point) == 0;}
73     bool is_zero(void) const {return seq.size() == 0;}
74     ex add_series(const pseries &other) const;
75     ex mul_const(const numeric &other) const;
76     ex mul_series(const pseries &other) const;
77     ex power_const(const numeric &p, int deg) const;
78
79 protected:
80     /** Vector of {coefficient, power} pairs */
81     epvector seq;
82
83     /** Series variable (holds a symbol) */
84     ex var;
85
86     /** Expansion point */
87     ex point;
88 };
89
90 // global constants
91 extern const pseries some_pseries;
92 extern type_info const & typeid_pseries;
93
94 /** Return a reference to the pseries object embedded in an expression.
95  *  The result is undefined if the expression does not contain a pseries
96  *  object at its top level.
97  *
98  *  @param e expression
99  *  @return reference to pseries object
100  *  @see is_ex_of_type */
101 inline const pseries &ex_to_pseries(const ex &e)
102 {
103         return static_cast<const pseries &>(*e.bp);
104 }
105
106 /** Convert the pseries object embedded in an expression to an ordinary
107  *  polynomial in the expansion variable. The result is undefined if the
108  *  expression does not contain a pseries object at its top level.
109  *
110  *  @param e expression
111  *  @return polynomial expression
112  *  @see is_ex_of_type
113  *  @see pseries::convert_to_poly */
114 inline ex series_to_poly(const ex &e)
115 {
116         return (static_cast<const pseries &>(*e.bp).convert_to_poly(true));
117 }
118
119 #ifndef NO_GINAC_NAMESPACE
120 } // namespace GiNaC
121 #endif // ndef NO_GINAC_NAMESPACE
122
123 #endif // ndef __GINAC_SERIES_H__