]> www.ginac.de Git - ginac.git/blob - ginac/add.h
* zeta(n,x) is now zetaderiv(n,s)
[ginac.git] / ginac / add.h
1 /** @file add.h
2  *
3  *  Interface to GiNaC's sums of expressions. */
4
5 /*
6  *  GiNaC Copyright (C) 1999-2003 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_ADD_H__
24 #define __GINAC_ADD_H__
25
26 #include "expairseq.h"
27
28 namespace GiNaC {
29
30 /** Sum of expressions. */
31 class add : public expairseq
32 {
33         GINAC_DECLARE_REGISTERED_CLASS(add, expairseq)
34         
35         friend class mul;
36         friend class power;
37         
38         // other constructors
39 public:
40         add(const ex & lh, const ex & rh);
41         add(const exvector & v);
42         add(const epvector & v);
43         add(const epvector & v, const ex & oc);
44         add(std::auto_ptr<epvector> vp, const ex & oc);
45         
46         // functions overriding virtual functions from base classes
47 public:
48         unsigned precedence() const {return 40;}
49         bool info(unsigned inf) const;
50         int degree(const ex & s) const;
51         int ldegree(const ex & s) const;
52         ex coeff(const ex & s, int n=1) const;
53         ex eval(int level=0) const;
54         ex evalm() const;
55         ex series(const relational & r, int order, unsigned options = 0) const;
56         ex normal(exmap & repl, exmap & rev_lookup, int level=0) const;
57         numeric integer_content() const;
58         ex smod(const numeric &xi) const;
59         numeric max_coefficient() const;
60         exvector get_free_indices() const;
61         ex eval_ncmul(const exvector & v) const;
62 protected:
63         ex derivative(const symbol & s) const;
64         unsigned return_type() const;
65         unsigned return_type_tinfo() const;
66         ex thisexpairseq(const epvector & v, const ex & oc) const;
67         ex thisexpairseq(std::auto_ptr<epvector> vp, const ex & oc) const;
68         expair split_ex_to_pair(const ex & e) const;
69         expair combine_ex_with_coeff_to_pair(const ex & e,
70                                              const ex & c) const;
71         expair combine_pair_with_coeff_to_pair(const expair & p,
72                                                const ex & c) const;
73         ex recombine_pair_to_ex(const expair & p) const;
74         ex expand(unsigned options=0) const;
75
76         // non-virtual functions in this class
77 protected:
78         void print_add(const print_context & c, const char *openbrace, const char *closebrace, const char *mul_sym, unsigned level) const;
79         void do_print(const print_context & c, unsigned level) const;
80         void do_print_latex(const print_latex & c, unsigned level) const;
81         void do_print_csrc(const print_csrc & c, unsigned level) const;
82         void do_print_python_repr(const print_python_repr & c, unsigned level) const;
83 };
84
85 // utility functions
86
87 /** Specialization of is_exactly_a<add>(obj) for add objects. */
88 template<> inline bool is_exactly_a<add>(const basic & obj)
89 {
90         return obj.tinfo()==TINFO_add;
91 }
92
93 } // namespace GiNaC
94
95 #endif // ndef __GINAC_ADD_H__