]> www.ginac.de Git - ginac.git/blob - ginac/indexed.h
subs_no_pattern -> no_pattern, subs_algebraic -> algebraic (but the old names
[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, exvector * vp); // vp will be deleted
144
145         // functions overriding virtual functions from base classes
146 public:
147         void print(const print_context & c, unsigned level = 0) const;
148         unsigned precedence() const {return 55;}
149         bool info(unsigned inf) const;
150         ex eval(int level = 0) const;
151         exvector get_free_indices() const;
152
153 protected:
154         ex derivative(const symbol & s) const;
155         ex thiscontainer(const exvector & v) const;
156         ex thiscontainer(exvector * vp) const;
157         unsigned return_type() const { return return_types::commutative; }
158         ex expand(unsigned options = 0) const;
159
160         // new virtual functions which can be overridden by derived classes
161         // none
162         
163         // non-virtual functions in this class
164 public:
165         /** Check whether all index values have a certain property.
166          *  @see class info_flags */
167         bool all_index_values_are(unsigned inf) const;
168
169         /** Return a vector containing the object's indices. */
170         exvector get_indices() const;
171
172         /** Return a vector containing the dummy indices of the object, if any. */
173         exvector get_dummy_indices() const;
174
175         /** Return a vector containing the dummy indices in the contraction with
176          *  another indexed object. */
177         exvector get_dummy_indices(const indexed & other) const;
178
179         /** Check whether the object has an index that forms a dummy index pair
180          *  with a given index. */
181         bool has_dummy_index_for(const ex & i) const;
182
183         /** Return symmetry properties. */
184         ex get_symmetry() const {return symtree;}
185
186 protected:
187         void printindices(const print_context & c, unsigned level) const;
188         void validate() const;
189
190         // member variables
191 protected:
192         ex symtree; /**< Index symmetry (tree of symmetry objects) */
193 };
194
195
196 class spmapkey {
197 public:
198         spmapkey() : dim(wild()) {}
199         spmapkey(const ex & v1, const ex & v2, const ex & dim = wild());
200
201         bool operator==(const spmapkey &other) const;
202         bool operator<(const spmapkey &other) const;
203
204         void debugprint() const;
205
206 protected:
207         ex v1, v2, dim;
208 };
209
210 typedef std::map<spmapkey, ex> spmap;
211
212 /** Helper class for storing information about known scalar products which
213  *  are to be automatically replaced by simplify_indexed().
214  *
215  *  @see simplify_indexed */
216 class scalar_products {
217 public:
218         /** Register scalar product pair and its value. */
219         void add(const ex & v1, const ex & v2, const ex & sp);
220
221         /** Register scalar product pair and its value for a specific space dimension. */
222         void add(const ex & v1, const ex & v2, const ex & dim, const ex & sp);
223
224         /** Register list of vectors. This adds all possible pairs of products
225          *  a.i * b.i with the value a*b (note that this is not a scalar vector
226          *  product but an ordinary product of scalars). */
227         void add_vectors(const lst & l, const ex & dim = wild());
228
229         /** Clear all registered scalar products. */
230         void clear();
231
232         bool is_defined(const ex & v1, const ex & v2, const ex & dim) const;
233         ex evaluate(const ex & v1, const ex & v2, const ex & dim) const;
234         void debugprint() const;
235
236 protected:
237         spmap spm; /*< Map from defined scalar product pairs to their values */
238 };
239
240
241 // utility functions
242
243 /** Specialization of is_exactly_a<indexed>(obj) for indexed objects. */
244 template<> inline bool is_exactly_a<indexed>(const basic & obj)
245 {
246         return obj.tinfo()==TINFO_indexed;
247 }
248
249 } // namespace GiNaC
250
251 #endif // ndef __GINAC_INDEXED_H__