]> www.ginac.de Git - ginac.git/blob - ginac/indexed.h
* Added harmonic polylog with signed parameters as H(m,s,x)
[ginac.git] / ginac / indexed.h
1 /** @file indexed.h
2  *
3  *  Interface to GiNaC's indexed 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_INDEXED_H__
24 #define __GINAC_INDEXED_H__
25
26 #include <map>
27
28 #include "exprseq.h"
29 #include "wildcard.h"
30
31 namespace GiNaC {
32
33
34 class scalar_products;
35 class symmetry;
36
37 /** This class holds an indexed expression. It consists of a 'base' expression
38  *  (the expression being indexed) which can be accessed as op(0), and n (n >= 0)
39  *  indices (all of class idx), accessible as op(1)..op(n). */
40 class indexed : public exprseq
41 {
42         GINAC_DECLARE_REGISTERED_CLASS(indexed, exprseq)
43
44         friend ex simplify_indexed(const ex & e, exvector & free_indices, exvector & dummy_indices, const scalar_products & sp);
45         friend ex simplify_indexed_product(const ex & e, exvector & free_indices, exvector & dummy_indices, const scalar_products & sp);
46         friend bool reposition_dummy_indices(ex & e, exvector & variant_dummy_indices, exvector & moved_indices);
47
48         // other constructors
49 public:
50         /** Construct indexed object with no index.
51          *
52          *  @param b Base expression
53          *  @return newly constructed indexed object */
54         indexed(const ex & b);
55
56         /** Construct indexed object with one index. The index must be of class idx.
57          *
58          *  @param b Base expression
59          *  @param i1 The index
60          *  @return newly constructed indexed object */
61         indexed(const ex & b, const ex & i1);
62
63         /** Construct indexed object with two indices. The indices must be of class idx.
64          *
65          *  @param b Base expression
66          *  @param i1 First index
67          *  @param i2 Second index
68          *  @return newly constructed indexed object */
69         indexed(const ex & b, const ex & i1, const ex & i2);
70
71         /** Construct indexed object with three indices. The indices must be of class idx.
72          *
73          *  @param b Base expression
74          *  @param i1 First index
75          *  @param i2 Second index
76          *  @param i3 Third index
77          *  @return newly constructed indexed object */
78         indexed(const ex & b, const ex & i1, const ex & i2, const ex & i3);
79
80         /** Construct indexed object with four indices. The indices must be of class idx.
81          *
82          *  @param b Base expression
83          *  @param i1 First index
84          *  @param i2 Second index
85          *  @param i3 Third index
86          *  @param i4 Fourth index
87          *  @return newly constructed indexed object */
88         indexed(const ex & b, const ex & i1, const ex & i2, const ex & i3, const ex & i4);
89
90         /** Construct indexed object with two indices and a specified symmetry. The
91          *  indices must be of class idx.
92          *
93          *  @param b Base expression
94          *  @param symm Symmetry of indices
95          *  @param i1 First index
96          *  @param i2 Second index
97          *  @return newly constructed indexed object */
98         indexed(const ex & b, const symmetry & symm, const ex & i1, const ex & i2);
99
100         /** Construct indexed object with three indices and a specified symmetry.
101          *  The indices must be of class idx.
102          *
103          *  @param b Base expression
104          *  @param symm Symmetry of indices
105          *  @param i1 First index
106          *  @param i2 Second index
107          *  @param i3 Third index
108          *  @return newly constructed indexed object */
109         indexed(const ex & b, const symmetry & symm, const ex & i1, const ex & i2, const ex & i3);
110
111         /** Construct indexed object with four indices and a specified symmetry. The
112          *  indices must be of class idx.
113          *
114          *  @param b Base expression
115          *  @param symm Symmetry of indices
116          *  @param i1 First index
117          *  @param i2 Second index
118          *  @param i3 Third index
119          *  @param i4 Fourth index
120          *  @return newly constructed indexed object */
121         indexed(const ex & b, const symmetry & symm, const ex & i1, const ex & i2, const ex & i3, const ex & i4);
122
123         /** Construct indexed object with a specified vector of indices. The indices
124          *  must be of class idx.
125          *
126          *  @param b Base expression
127          *  @param iv Vector of indices
128          *  @return newly constructed indexed object */
129         indexed(const ex & b, const exvector & iv);
130
131         /** Construct indexed object with a specified vector of indices and
132          *  symmetry. The indices must be of class idx.
133          *
134          *  @param b Base expression
135          *  @param symm Symmetry of indices
136          *  @param iv Vector of indices
137          *  @return newly constructed indexed object */
138         indexed(const ex & b, const symmetry & symm, const exvector & iv);
139
140         // internal constructors
141         indexed(const symmetry & symm, const exprseq & es);
142         indexed(const symmetry & symm, const exvector & v, bool discardable = false);
143         indexed(const symmetry & symm, std::auto_ptr<exvector> vp);
144
145         // functions overriding virtual functions from base classes
146 public:
147         unsigned precedence() const {return 55;}
148         bool info(unsigned inf) const;
149         ex eval(int level = 0) const;
150         exvector get_free_indices() const;
151
152 protected:
153         ex derivative(const symbol & s) const;
154         ex thiscontainer(const exvector & v) const;
155         ex thiscontainer(std::auto_ptr<exvector> vp) const;
156         unsigned return_type() const { return return_types::commutative; }
157         ex expand(unsigned options = 0) const;
158
159         // new virtual functions which can be overridden by derived classes
160         // none
161         
162         // non-virtual functions in this class
163 public:
164         /** Check whether all index values have a certain property.
165          *  @see class info_flags */
166         bool all_index_values_are(unsigned inf) const;
167
168         /** Return a vector containing the object's indices. */
169         exvector get_indices() const;
170
171         /** Return a vector containing the dummy indices of the object, if any. */
172         exvector get_dummy_indices() const;
173
174         /** Return a vector containing the dummy indices in the contraction with
175          *  another indexed object. */
176         exvector get_dummy_indices(const indexed & other) const;
177
178         /** Check whether the object has an index that forms a dummy index pair
179          *  with a given index. */
180         bool has_dummy_index_for(const ex & i) const;
181
182         /** Return symmetry properties. */
183         ex get_symmetry() const {return symtree;}
184
185 protected:
186         void printindices(const print_context & c, unsigned level) const;
187         void print_indexed(const print_context & c, const char *openbrace, const char *closebrace, unsigned level) const;
188         void do_print(const print_context & c, unsigned level) const;
189         void do_print_latex(const print_latex & c, unsigned level) const;
190         void do_print_tree(const print_tree & c, unsigned level) const;
191         void validate() const;
192
193         // member variables
194 protected:
195         ex symtree; /**< Index symmetry (tree of symmetry objects) */
196 };
197
198
199 class spmapkey {
200 public:
201         spmapkey() : dim(wild()) {}
202         spmapkey(const ex & v1, const ex & v2, const ex & dim = wild());
203
204         bool operator==(const spmapkey &other) const;
205         bool operator<(const spmapkey &other) const;
206
207         void debugprint() const;
208
209 protected:
210         ex v1, v2, dim;
211 };
212
213 typedef std::map<spmapkey, ex> spmap;
214
215 /** Helper class for storing information about known scalar products which
216  *  are to be automatically replaced by simplify_indexed().
217  *
218  *  @see simplify_indexed */
219 class scalar_products {
220 public:
221         /** Register scalar product pair and its value. */
222         void add(const ex & v1, const ex & v2, const ex & sp);
223
224         /** Register scalar product pair and its value for a specific space dimension. */
225         void add(const ex & v1, const ex & v2, const ex & dim, const ex & sp);
226
227         /** Register list of vectors. This adds all possible pairs of products
228          *  a.i * b.i with the value a*b (note that this is not a scalar vector
229          *  product but an ordinary product of scalars). */
230         void add_vectors(const lst & l, const ex & dim = wild());
231
232         /** Clear all registered scalar products. */
233         void clear();
234
235         bool is_defined(const ex & v1, const ex & v2, const ex & dim) const;
236         ex evaluate(const ex & v1, const ex & v2, const ex & dim) const;
237         void debugprint() const;
238
239 protected:
240         spmap spm; /*< Map from defined scalar product pairs to their values */
241 };
242
243
244 // utility functions
245
246 /** Specialization of is_exactly_a<indexed>(obj) for indexed objects. */
247 template<> inline bool is_exactly_a<indexed>(const basic & obj)
248 {
249         return obj.tinfo()==TINFO_indexed;
250 }
251
252 } // namespace GiNaC
253
254 #endif // ndef __GINAC_INDEXED_H__