]> www.ginac.de Git - ginac.git/blob - ginac/indexed.cpp
[msvc] Yet another compiler bug work around.
[ginac.git] / ginac / indexed.cpp
1 /** @file indexed.cpp
2  *
3  *  Implementation of GiNaC's indexed expressions. */
4
5 /*
6  *  GiNaC Copyright (C) 1999-2010 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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
21  */
22
23 #include "indexed.h"
24 #include "idx.h"
25 #include "add.h"
26 #include "mul.h"
27 #include "ncmul.h"
28 #include "power.h"
29 #include "relational.h"
30 #include "symmetry.h"
31 #include "operators.h"
32 #include "lst.h"
33 #include "archive.h"
34 #include "symbol.h"
35 #include "utils.h"
36 #include "integral.h"
37 #include "matrix.h"
38 #include "inifcns.h"
39
40 #include <iostream>
41 #include <limits>
42 #include <sstream>
43 #include <stdexcept>
44
45 namespace GiNaC {
46
47 GINAC_IMPLEMENT_REGISTERED_CLASS_OPT(indexed, exprseq,
48   print_func<print_context>(&indexed::do_print).
49   print_func<print_latex>(&indexed::do_print_latex).
50   print_func<print_tree>(&indexed::do_print_tree))
51
52 //////////
53 // default constructor
54 //////////
55
56 indexed::indexed() : symtree(not_symmetric())
57 {
58 }
59
60 //////////
61 // other constructors
62 //////////
63
64 indexed::indexed(const ex & b) : inherited(b), symtree(not_symmetric())
65 {
66         validate();
67 }
68
69 indexed::indexed(const ex & b, const ex & i1) : inherited(b, i1), symtree(not_symmetric())
70 {
71         validate();
72 }
73
74 indexed::indexed(const ex & b, const ex & i1, const ex & i2) : inherited(b, i1, i2), symtree(not_symmetric())
75 {
76         validate();
77 }
78
79 indexed::indexed(const ex & b, const ex & i1, const ex & i2, const ex & i3) : inherited(b, i1, i2, i3), symtree(not_symmetric())
80 {
81         validate();
82 }
83
84 indexed::indexed(const ex & b, const ex & i1, const ex & i2, const ex & i3, const ex & i4) : inherited(b, i1, i2, i3, i4), symtree(not_symmetric())
85 {
86         validate();
87 }
88
89 indexed::indexed(const ex & b, const symmetry & symm, const ex & i1, const ex & i2) : inherited(b, i1, i2), symtree(symm)
90 {
91         validate();
92 }
93
94 indexed::indexed(const ex & b, const symmetry & symm, const ex & i1, const ex & i2, const ex & i3) : inherited(b, i1, i2, i3), symtree(symm)
95 {
96         validate();
97 }
98
99 indexed::indexed(const ex & b, const symmetry & symm, const ex & i1, const ex & i2, const ex & i3, const ex & i4) : inherited(b, i1, i2, i3, i4), symtree(symm)
100 {
101         validate();
102 }
103
104 indexed::indexed(const ex & b, const exvector & v) : inherited(b), symtree(not_symmetric())
105 {
106         seq.insert(seq.end(), v.begin(), v.end());
107         validate();
108 }
109
110 indexed::indexed(const ex & b, const symmetry & symm, const exvector & v) : inherited(b), symtree(symm)
111 {
112         seq.insert(seq.end(), v.begin(), v.end());
113         validate();
114 }
115
116 indexed::indexed(const symmetry & symm, const exprseq & es) : inherited(es), symtree(symm)
117 {
118 }
119
120 indexed::indexed(const symmetry & symm, const exvector & v, bool discardable) : inherited(v, discardable), symtree(symm)
121 {
122 }
123
124 indexed::indexed(const symmetry & symm, std::auto_ptr<exvector> vp) : inherited(vp), symtree(symm)
125 {
126 }
127
128 //////////
129 // archiving
130 //////////
131
132 void indexed::read_archive(const archive_node &n, lst &sym_lst)
133 {
134         inherited::read_archive(n, sym_lst);
135         if (!n.find_ex("symmetry", symtree, sym_lst)) {
136                 // GiNaC versions <= 0.9.0 had an unsigned "symmetry" property
137                 unsigned symm = 0;
138                 n.find_unsigned("symmetry", symm);
139                 switch (symm) {
140                         case 1:
141                                 symtree = sy_symm();
142                                 break;
143                         case 2:
144                                 symtree = sy_anti();
145                                 break;
146                         default:
147                                 symtree = not_symmetric();
148                                 break;
149                 }
150                 const_cast<symmetry &>(ex_to<symmetry>(symtree)).validate(seq.size() - 1);
151         }
152 }
153 GINAC_BIND_UNARCHIVER(indexed);
154
155 void indexed::archive(archive_node &n) const
156 {
157         inherited::archive(n);
158         n.add_ex("symmetry", symtree);
159 }
160
161 //////////
162 // functions overriding virtual functions from base classes
163 //////////
164
165 void indexed::printindices(const print_context & c, unsigned level) const
166 {
167         if (seq.size() > 1) {
168
169                 exvector::const_iterator it=seq.begin() + 1, itend = seq.end();
170
171                 if (is_a<print_latex>(c)) {
172
173                         // TeX output: group by variance
174                         bool first = true;
175                         bool covariant = true;
176
177                         while (it != itend) {
178                                 bool cur_covariant = (is_a<varidx>(*it) ? ex_to<varidx>(*it).is_covariant() : true);
179                                 if (first || cur_covariant != covariant) { // Variance changed
180                                         // The empty {} prevents indices from ending up on top of each other
181                                         if (!first)
182                                                 c.s << "}{}";
183                                         covariant = cur_covariant;
184                                         if (covariant)
185                                                 c.s << "_{";
186                                         else
187                                                 c.s << "^{";
188                                 }
189                                 it->print(c, level);
190                                 c.s << " ";
191                                 first = false;
192                                 it++;
193                         }
194                         c.s << "}";
195
196                 } else {
197
198                         // Ordinary output
199                         while (it != itend) {
200                                 it->print(c, level);
201                                 it++;
202                         }
203                 }
204         }
205 }
206
207 void indexed::print_indexed(const print_context & c, const char *openbrace, const char *closebrace, unsigned level) const
208 {
209         if (precedence() <= level)
210                 c.s << openbrace << '(';
211         c.s << openbrace;
212         seq[0].print(c, precedence());
213         c.s << closebrace;
214         printindices(c, level);
215         if (precedence() <= level)
216                 c.s << ')' << closebrace;
217 }
218
219 void indexed::do_print(const print_context & c, unsigned level) const
220 {
221         print_indexed(c, "", "", level);
222 }
223
224 void indexed::do_print_latex(const print_latex & c, unsigned level) const
225 {
226         print_indexed(c, "{", "}", level);
227 }
228
229 void indexed::do_print_tree(const print_tree & c, unsigned level) const
230 {
231         c.s << std::string(level, ' ') << class_name() << " @" << this
232             << std::hex << ", hash=0x" << hashvalue << ", flags=0x" << flags << std::dec
233             << ", " << seq.size()-1 << " indices"
234             << ", symmetry=" << symtree << std::endl;
235         seq[0].print(c, level + c.delta_indent);
236         printindices(c, level + c.delta_indent);
237 }
238
239 bool indexed::info(unsigned inf) const
240 {
241         if (inf == info_flags::indexed) return true;
242         if (inf == info_flags::has_indices) return seq.size() > 1;
243         return inherited::info(inf);
244 }
245
246 struct idx_is_not : public std::binary_function<ex, unsigned, bool> {
247         bool operator() (const ex & e, unsigned inf) const {
248                 return !(ex_to<idx>(e).get_value().info(inf));
249         }
250 };
251
252 bool indexed::all_index_values_are(unsigned inf) const
253 {
254         // No indices? Then no property can be fulfilled
255         if (seq.size() < 2)
256                 return false;
257
258         // Check all indices
259         return find_if(seq.begin() + 1, seq.end(), bind2nd(idx_is_not(), inf)) == seq.end();
260 }
261
262 int indexed::compare_same_type(const basic & other) const
263 {
264         GINAC_ASSERT(is_a<indexed>(other));
265         return inherited::compare_same_type(other);
266 }
267
268 ex indexed::eval(int level) const
269 {
270         // First evaluate children, then we will end up here again
271         if (level > 1)
272                 return indexed(ex_to<symmetry>(symtree), evalchildren(level));
273
274         const ex &base = seq[0];
275
276         // If the base object is 0, the whole object is 0
277         if (base.is_zero())
278                 return _ex0;
279
280         // If the base object is a product, pull out the numeric factor
281         if (is_exactly_a<mul>(base) && is_exactly_a<numeric>(base.op(base.nops() - 1))) {
282                 exvector v(seq);
283                 ex f = ex_to<numeric>(base.op(base.nops() - 1));
284                 v[0] = seq[0] / f;
285                 return f * thiscontainer(v);
286         }
287
288         if((typeid(*this) == typeid(indexed)) && seq.size()==1)
289                 return base;
290
291         // Canonicalize indices according to the symmetry properties
292         if (seq.size() > 2) {
293                 exvector v = seq;
294                 GINAC_ASSERT(is_exactly_a<symmetry>(symtree));
295                 int sig = canonicalize(v.begin() + 1, ex_to<symmetry>(symtree));
296                 if (sig != std::numeric_limits<int>::max()) {
297                         // Something has changed while sorting indices, more evaluations later
298                         if (sig == 0)
299                                 return _ex0;
300                         return ex(sig) * thiscontainer(v);
301                 }
302         }
303
304         // Let the class of the base object perform additional evaluations
305         return ex_to<basic>(base).eval_indexed(*this);
306 }
307
308 ex indexed::real_part() const
309 {
310         if(op(0).info(info_flags::real))
311                 return *this;
312         return real_part_function(*this).hold();
313 }
314
315 ex indexed::imag_part() const
316 {
317         if(op(0).info(info_flags::real))
318                 return 0;
319         return imag_part_function(*this).hold();
320 }
321
322 ex indexed::thiscontainer(const exvector & v) const
323 {
324         return indexed(ex_to<symmetry>(symtree), v);
325 }
326
327 ex indexed::thiscontainer(std::auto_ptr<exvector> vp) const
328 {
329         return indexed(ex_to<symmetry>(symtree), vp);
330 }
331
332 unsigned indexed::return_type() const
333 {
334         if(is_a<matrix>(op(0)))
335                 return return_types::commutative;
336         else
337                 return op(0).return_type();
338 }
339
340 ex indexed::expand(unsigned options) const
341 {
342         GINAC_ASSERT(seq.size() > 0);
343
344         if (options & expand_options::expand_indexed) {
345                 ex newbase = seq[0].expand(options);
346                 if (is_exactly_a<add>(newbase)) {
347                         ex sum = _ex0;
348                         for (size_t i=0; i<newbase.nops(); i++) {
349                                 exvector s = seq;
350                                 s[0] = newbase.op(i);
351                                 sum += thiscontainer(s).expand(options);
352                         }
353                         return sum;
354                 }
355                 if (!are_ex_trivially_equal(newbase, seq[0])) {
356                         exvector s = seq;
357                         s[0] = newbase;
358                         return ex_to<indexed>(thiscontainer(s)).inherited::expand(options);
359                 }
360         }
361         return inherited::expand(options);
362 }
363
364 //////////
365 // virtual functions which can be overridden by derived classes
366 //////////
367
368 // none
369
370 //////////
371 // non-virtual functions in this class
372 //////////
373
374 /** Check whether all indices are of class idx and validate the symmetry
375  *  tree. This function is used internally to make sure that all constructed
376  *  indexed objects really carry indices and not some other classes. */
377 void indexed::validate() const
378 {
379         GINAC_ASSERT(seq.size() > 0);
380         exvector::const_iterator it = seq.begin() + 1, itend = seq.end();
381         while (it != itend) {
382                 if (!is_a<idx>(*it))
383                         throw(std::invalid_argument("indices of indexed object must be of type idx"));
384                 it++;
385         }
386
387         if (!symtree.is_zero()) {
388                 if (!is_exactly_a<symmetry>(symtree))
389                         throw(std::invalid_argument("symmetry of indexed object must be of type symmetry"));
390                 const_cast<symmetry &>(ex_to<symmetry>(symtree)).validate(seq.size() - 1);
391         }
392 }
393
394 /** Implementation of ex::diff() for an indexed object always returns 0.
395  *
396  *  @see ex::diff */
397 ex indexed::derivative(const symbol & s) const
398 {
399         return _ex0;
400 }
401
402 //////////
403 // global functions
404 //////////
405
406 struct idx_is_equal_ignore_dim : public std::binary_function<ex, ex, bool> {
407         bool operator() (const ex &lh, const ex &rh) const
408         {
409                 if (lh.is_equal(rh))
410                         return true;
411                 else
412                         try {
413                                 // Replacing the dimension might cause an error (e.g. with
414                                 // index classes that only work in a fixed number of dimensions)
415                                 return lh.is_equal(ex_to<idx>(rh).replace_dim(ex_to<idx>(lh).get_dim()));
416                         } catch (...) {
417                                 return false;
418                         }
419         }
420 };
421
422 /** Check whether two sorted index vectors are consistent (i.e. equal). */
423 static bool indices_consistent(const exvector & v1, const exvector & v2)
424 {
425         // Number of indices must be the same
426         if (v1.size() != v2.size())
427                 return false;
428
429         return equal(v1.begin(), v1.end(), v2.begin(), idx_is_equal_ignore_dim());
430 }
431
432 exvector indexed::get_indices() const
433 {
434         GINAC_ASSERT(seq.size() >= 1);
435         return exvector(seq.begin() + 1, seq.end());
436 }
437
438 exvector indexed::get_dummy_indices() const
439 {
440         exvector free_indices, dummy_indices;
441         find_free_and_dummy(seq.begin() + 1, seq.end(), free_indices, dummy_indices);
442         return dummy_indices;
443 }
444
445 exvector indexed::get_dummy_indices(const indexed & other) const
446 {
447         exvector indices = get_free_indices();
448         exvector other_indices = other.get_free_indices();
449         indices.insert(indices.end(), other_indices.begin(), other_indices.end());
450         exvector dummy_indices;
451         find_dummy_indices(indices, dummy_indices);
452         return dummy_indices;
453 }
454
455 bool indexed::has_dummy_index_for(const ex & i) const
456 {
457         exvector::const_iterator it = seq.begin() + 1, itend = seq.end();
458         while (it != itend) {
459                 if (is_dummy_pair(*it, i))
460                         return true;
461                 it++;
462         }
463         return false;
464 }
465
466 exvector indexed::get_free_indices() const
467 {
468         exvector free_indices, dummy_indices;
469         find_free_and_dummy(seq.begin() + 1, seq.end(), free_indices, dummy_indices);
470         return free_indices;
471 }
472
473 exvector add::get_free_indices() const
474 {
475         exvector free_indices;
476         for (size_t i=0; i<nops(); i++) {
477                 if (i == 0)
478                         free_indices = op(i).get_free_indices();
479                 else {
480                         exvector free_indices_of_term = op(i).get_free_indices();
481                         if (!indices_consistent(free_indices, free_indices_of_term))
482                                 throw (std::runtime_error("add::get_free_indices: inconsistent indices in sum"));
483                 }
484         }
485         return free_indices;
486 }
487
488 exvector mul::get_free_indices() const
489 {
490         // Concatenate free indices of all factors
491         exvector un;
492         for (size_t i=0; i<nops(); i++) {
493                 exvector free_indices_of_factor = op(i).get_free_indices();
494                 un.insert(un.end(), free_indices_of_factor.begin(), free_indices_of_factor.end());
495         }
496
497         // And remove the dummy indices
498         exvector free_indices, dummy_indices;
499         find_free_and_dummy(un, free_indices, dummy_indices);
500         return free_indices;
501 }
502
503 exvector ncmul::get_free_indices() const
504 {
505         // Concatenate free indices of all factors
506         exvector un;
507         for (size_t i=0; i<nops(); i++) {
508                 exvector free_indices_of_factor = op(i).get_free_indices();
509                 un.insert(un.end(), free_indices_of_factor.begin(), free_indices_of_factor.end());
510         }
511
512         // And remove the dummy indices
513         exvector free_indices, dummy_indices;
514         find_free_and_dummy(un, free_indices, dummy_indices);
515         return free_indices;
516 }
517
518 struct is_summation_idx : public std::unary_function<ex, bool> {
519         bool operator()(const ex & e)
520         {
521                 return is_dummy_pair(e, e);
522         }
523 };
524
525 exvector integral::get_free_indices() const
526 {
527         if (a.get_free_indices().size() || b.get_free_indices().size())
528                 throw (std::runtime_error("integral::get_free_indices: boundary values should not have free indices"));
529         return f.get_free_indices();
530 }
531
532 template<class T> size_t number_of_type(const exvector&v)
533 {
534         size_t number = 0;
535         for(exvector::const_iterator i=v.begin(); i!=v.end(); ++i)
536                 if(is_exactly_a<T>(*i))
537                         ++number;
538         return number;
539 }
540
541 /** Rename dummy indices in an expression.
542  *
543  *  @param e Expression to work on
544  *  @param local_dummy_indices The set of dummy indices that appear in the
545  *    expression "e"
546  *  @param global_dummy_indices The set of dummy indices that have appeared
547  *    before and which we would like to use in "e", too. This gets updated
548  *    by the function */
549 template<class T> static ex rename_dummy_indices(const ex & e, exvector & global_dummy_indices, exvector & local_dummy_indices)
550 {
551         size_t global_size = number_of_type<T>(global_dummy_indices),
552                local_size = number_of_type<T>(local_dummy_indices);
553
554         // Any local dummy indices at all?
555         if (local_size == 0)
556                 return e;
557
558         if (global_size < local_size) {
559
560                 // More local indices than we encountered before, add the new ones
561                 // to the global set
562                 size_t old_global_size = global_size;
563                 int remaining = local_size - global_size;
564                 exvector::const_iterator it = local_dummy_indices.begin(), itend = local_dummy_indices.end();
565                 while (it != itend && remaining > 0) {
566                         if (is_exactly_a<T>(*it) && find_if(global_dummy_indices.begin(), global_dummy_indices.end(), bind2nd(idx_is_equal_ignore_dim(), *it)) == global_dummy_indices.end()) {
567                                 global_dummy_indices.push_back(*it);
568                                 global_size++;
569                                 remaining--;
570                         }
571                         it++;
572                 }
573
574                 // If this is the first set of local indices, do nothing
575                 if (old_global_size == 0)
576                         return e;
577         }
578         GINAC_ASSERT(local_size <= global_size);
579
580         // Construct vectors of index symbols
581         exvector local_syms, global_syms;
582         local_syms.reserve(local_size);
583         global_syms.reserve(local_size);
584         for (size_t i=0; local_syms.size()!=local_size; i++)
585                 if(is_exactly_a<T>(local_dummy_indices[i]))
586                         local_syms.push_back(local_dummy_indices[i].op(0));
587         shaker_sort(local_syms.begin(), local_syms.end(), ex_is_less(), ex_swap());
588         for (size_t i=0; global_syms.size()!=local_size; i++) // don't use more global symbols than necessary
589                 if(is_exactly_a<T>(global_dummy_indices[i]))
590                         global_syms.push_back(global_dummy_indices[i].op(0));
591         shaker_sort(global_syms.begin(), global_syms.end(), ex_is_less(), ex_swap());
592
593         // Remove common indices
594         exvector local_uniq, global_uniq;
595         set_difference(local_syms.begin(), local_syms.end(), global_syms.begin(), global_syms.end(), std::back_insert_iterator<exvector>(local_uniq), ex_is_less());
596         set_difference(global_syms.begin(), global_syms.end(), local_syms.begin(), local_syms.end(), std::back_insert_iterator<exvector>(global_uniq), ex_is_less());
597
598         // Replace remaining non-common local index symbols by global ones
599         if (local_uniq.empty())
600                 return e;
601         else {
602                 while (global_uniq.size() > local_uniq.size())
603                         global_uniq.pop_back();
604                 return e.subs(lst(local_uniq.begin(), local_uniq.end()), lst(global_uniq.begin(), global_uniq.end()), subs_options::no_pattern);
605         }
606 }
607
608 /** Given a set of indices, extract those of class varidx. */
609 static void find_variant_indices(const exvector & v, exvector & variant_indices)
610 {
611         exvector::const_iterator it1, itend;
612         for (it1 = v.begin(), itend = v.end(); it1 != itend; ++it1) {
613                 if (is_exactly_a<varidx>(*it1))
614                         variant_indices.push_back(*it1);
615         }
616 }
617
618 /** Raise/lower dummy indices in a single indexed objects to canonicalize their
619  *  variance.
620  *
621  *  @param e Object to work on
622  *  @param variant_dummy_indices The set of indices that might need repositioning (will be changed by this function)
623  *  @param moved_indices The set of indices that have been repositioned (will be changed by this function)
624  *  @return true if 'e' was changed */
625 bool reposition_dummy_indices(ex & e, exvector & variant_dummy_indices, exvector & moved_indices)
626 {
627         bool something_changed = false;
628
629         // Find dummy symbols that occur twice in the same indexed object.
630         exvector local_var_dummies;
631         local_var_dummies.reserve(e.nops()/2);
632         for (size_t i=1; i<e.nops(); ++i) {
633                 if (!is_a<varidx>(e.op(i)))
634                         continue;
635                 for (size_t j=i+1; j<e.nops(); ++j) {
636                         if (is_dummy_pair(e.op(i), e.op(j))) {
637                                 local_var_dummies.push_back(e.op(i));
638                                 for (exvector::iterator k = variant_dummy_indices.begin();
639                                                 k!=variant_dummy_indices.end(); ++k) {
640                                         if (e.op(i).op(0) == k->op(0)) {
641                                                 variant_dummy_indices.erase(k);
642                                                 break;
643                                         }
644                                 }
645                                 break;
646                         }
647                 }
648         }
649
650         // In the case where a dummy symbol occurs twice in the same indexed object
651         // we try all posibilities of raising/lowering and keep the least one in
652         // the sense of ex_is_less.
653         ex optimal_e = e;
654         size_t numpossibs = 1 << local_var_dummies.size();
655         for (size_t i=0; i<numpossibs; ++i) {
656                 ex try_e = e;
657                 for (size_t j=0; j<local_var_dummies.size(); ++j) {
658                         exmap m;
659                         if (1<<j & i) {
660                                 ex curr_idx = local_var_dummies[j];
661                                 ex curr_toggle = ex_to<varidx>(curr_idx).toggle_variance();
662                                 m[curr_idx] = curr_toggle;
663                                 m[curr_toggle] = curr_idx;
664                         }
665                         try_e = e.subs(m, subs_options::no_pattern);
666                 }
667                 if(ex_is_less()(try_e, optimal_e))
668                 {       optimal_e = try_e;
669                         something_changed = true;
670                 }
671         }
672         e = optimal_e;
673
674         if (!is_a<indexed>(e))
675                 return true;
676
677         exvector seq = ex_to<indexed>(e).seq;
678
679         // If a dummy index is encountered for the first time in the
680         // product, pull it up, otherwise, pull it down
681         for (exvector::iterator it2 = seq.begin()+1, it2end = seq.end();
682                         it2 != it2end; ++it2) {
683                 if (!is_exactly_a<varidx>(*it2))
684                         continue;
685
686                 exvector::iterator vit, vitend;
687                 for (vit = variant_dummy_indices.begin(), vitend = variant_dummy_indices.end(); vit != vitend; ++vit) {
688                         if (it2->op(0).is_equal(vit->op(0))) {
689                                 if (ex_to<varidx>(*it2).is_covariant()) {
690                                         /*
691                                          * N.B. we don't want to use
692                                          *
693                                          *  e = e.subs(lst(
694                                          *  *it2 == ex_to<varidx>(*it2).toggle_variance(),
695                                          *  ex_to<varidx>(*it2).toggle_variance() == *it2
696                                          *  ), subs_options::no_pattern);
697                                          *
698                                          * since this can trigger non-trivial repositioning of indices,
699                                          * e.g. due to non-trivial symmetry properties of e, thus
700                                          * invalidating iterators
701                                          */
702                                         *it2 = ex_to<varidx>(*it2).toggle_variance();
703                                         something_changed = true;
704                                 }
705                                 moved_indices.push_back(*vit);
706                                 variant_dummy_indices.erase(vit);
707                                 goto next_index;
708                         }
709                 }
710
711                 for (vit = moved_indices.begin(), vitend = moved_indices.end(); vit != vitend; ++vit) {
712                         if (it2->op(0).is_equal(vit->op(0))) {
713                                 if (ex_to<varidx>(*it2).is_contravariant()) {
714                                         *it2 = ex_to<varidx>(*it2).toggle_variance();
715                                         something_changed = true;
716                                 }
717                                 goto next_index;
718                         }
719                 }
720
721 next_index: ;
722         }
723
724         if (something_changed)
725                 e = ex_to<indexed>(e).thiscontainer(seq);
726
727         return something_changed;
728 }
729
730 /* Ordering that only compares the base expressions of indexed objects. */
731 struct ex_base_is_less : public std::binary_function<ex, ex, bool> {
732         bool operator() (const ex &lh, const ex &rh) const
733         {
734                 return (is_a<indexed>(lh) ? lh.op(0) : lh).compare(is_a<indexed>(rh) ? rh.op(0) : rh) < 0;
735         }
736 };
737
738 /* An auxiliary function used by simplify_indexed() and expand_dummy_sum() 
739  * It returns an exvector of factors from the supplied product */
740 static void product_to_exvector(const ex & e, exvector & v, bool & non_commutative)
741 {
742         // Remember whether the product was commutative or noncommutative
743         // (because we chop it into factors and need to reassemble later)
744         non_commutative = is_exactly_a<ncmul>(e);
745
746         // Collect factors in an exvector, store squares twice
747         v.reserve(e.nops() * 2);
748
749         if (is_exactly_a<power>(e)) {
750                 // We only get called for simple squares, split a^2 -> a*a
751                 GINAC_ASSERT(e.op(1).is_equal(_ex2));
752                 v.push_back(e.op(0));
753                 v.push_back(e.op(0));
754         } else {
755                 for (size_t i=0; i<e.nops(); i++) {
756                         ex f = e.op(i);
757                         if (is_exactly_a<power>(f) && f.op(1).is_equal(_ex2)) {
758                                 v.push_back(f.op(0));
759                                 v.push_back(f.op(0));
760                         } else if (is_exactly_a<ncmul>(f)) {
761                                 // Noncommutative factor found, split it as well
762                                 non_commutative = true; // everything becomes noncommutative, ncmul will sort out the commutative factors later
763                                 for (size_t j=0; j<f.nops(); j++)
764                                         v.push_back(f.op(j));
765                         } else
766                                 v.push_back(f);
767                 }
768         }
769 }
770
771 template<class T> ex idx_symmetrization(const ex& r,const exvector& local_dummy_indices)
772 {       exvector dummy_syms;
773         dummy_syms.reserve(r.nops());
774         for (exvector::const_iterator it = local_dummy_indices.begin(); it != local_dummy_indices.end(); ++it)
775                         if(is_exactly_a<T>(*it))
776                                 dummy_syms.push_back(it->op(0));
777         if(dummy_syms.size() < 2)
778                 return r;
779         ex q=symmetrize(r, dummy_syms);
780         return q;
781 }
782
783 // Forward declaration needed in absence of friend injection, C.f. [namespace.memdef]:
784 ex simplify_indexed(const ex & e, exvector & free_indices, exvector & dummy_indices, const scalar_products & sp);
785
786 /** Simplify product of indexed expressions (commutative, noncommutative and
787  *  simple squares), return list of free indices. */
788 ex simplify_indexed_product(const ex & e, exvector & free_indices, exvector & dummy_indices, const scalar_products & sp)
789 {
790         // Collect factors in an exvector
791         exvector v;
792
793         // Remember whether the product was commutative or noncommutative
794         // (because we chop it into factors and need to reassemble later)
795         bool non_commutative;
796         product_to_exvector(e, v, non_commutative);
797
798         // Perform contractions
799         bool something_changed = false;
800         GINAC_ASSERT(v.size() > 1);
801         exvector::iterator it1, itend = v.end(), next_to_last = itend - 1;
802         for (it1 = v.begin(); it1 != next_to_last; it1++) {
803
804 try_again:
805                 if (!is_a<indexed>(*it1))
806                         continue;
807
808                 bool first_noncommutative = (it1->return_type() != return_types::commutative);
809
810                 // Indexed factor found, get free indices and look for contraction
811                 // candidates
812                 exvector free1, dummy1;
813                 find_free_and_dummy(ex_to<indexed>(*it1).seq.begin() + 1, ex_to<indexed>(*it1).seq.end(), free1, dummy1);
814
815                 exvector::iterator it2;
816                 for (it2 = it1 + 1; it2 != itend; it2++) {
817
818                         if (!is_a<indexed>(*it2))
819                                 continue;
820
821                         bool second_noncommutative = (it2->return_type() != return_types::commutative);
822
823                         // Find free indices of second factor and merge them with free
824                         // indices of first factor
825                         exvector un;
826                         find_free_and_dummy(ex_to<indexed>(*it2).seq.begin() + 1, ex_to<indexed>(*it2).seq.end(), un, dummy1);
827                         un.insert(un.end(), free1.begin(), free1.end());
828
829                         // Check whether the two factors share dummy indices
830                         exvector free, dummy;
831                         find_free_and_dummy(un, free, dummy);
832                         size_t num_dummies = dummy.size();
833                         if (num_dummies == 0)
834                                 continue;
835
836                         // At least one dummy index, is it a defined scalar product?
837                         bool contracted = false;
838                         if (free.empty() && it1->nops()==2 && it2->nops()==2) {
839
840                                 ex dim = minimal_dim(
841                                         ex_to<idx>(it1->op(1)).get_dim(),
842                                         ex_to<idx>(it2->op(1)).get_dim()
843                                 );
844
845                                 // User-defined scalar product?
846                                 if (sp.is_defined(*it1, *it2, dim)) {
847
848                                         // Yes, substitute it
849                                         *it1 = sp.evaluate(*it1, *it2, dim);
850                                         *it2 = _ex1;
851                                         goto contraction_done;
852                                 }
853                         }
854
855                         // Try to contract the first one with the second one
856                         contracted = ex_to<basic>(it1->op(0)).contract_with(it1, it2, v);
857                         if (!contracted) {
858
859                                 // That didn't work; maybe the second object knows how to
860                                 // contract itself with the first one
861                                 contracted = ex_to<basic>(it2->op(0)).contract_with(it2, it1, v);
862                         }
863                         if (contracted) {
864 contraction_done:
865                                 if (first_noncommutative || second_noncommutative
866                                  || is_exactly_a<add>(*it1) || is_exactly_a<add>(*it2)
867                                  || is_exactly_a<mul>(*it1) || is_exactly_a<mul>(*it2)
868                                  || is_exactly_a<ncmul>(*it1) || is_exactly_a<ncmul>(*it2)) {
869
870                                         // One of the factors became a sum or product:
871                                         // re-expand expression and run again
872                                         // Non-commutative products are always re-expanded to give
873                                         // eval_ncmul() the chance to re-order and canonicalize
874                                         // the product
875                                         ex r = (non_commutative ? ex(ncmul(v, true)) : ex(mul(v)));
876                                         return simplify_indexed(r, free_indices, dummy_indices, sp);
877                                 }
878
879                                 // Both objects may have new indices now or they might
880                                 // even not be indexed objects any more, so we have to
881                                 // start over
882                                 something_changed = true;
883                                 goto try_again;
884                         }
885                 }
886         }
887
888         // Find free indices (concatenate them all and call find_free_and_dummy())
889         // and all dummy indices that appear
890         exvector un, individual_dummy_indices;
891         for (it1 = v.begin(), itend = v.end(); it1 != itend; ++it1) {
892                 exvector free_indices_of_factor;
893                 if (is_a<indexed>(*it1)) {
894                         exvector dummy_indices_of_factor;
895                         find_free_and_dummy(ex_to<indexed>(*it1).seq.begin() + 1, ex_to<indexed>(*it1).seq.end(), free_indices_of_factor, dummy_indices_of_factor);
896                         individual_dummy_indices.insert(individual_dummy_indices.end(), dummy_indices_of_factor.begin(), dummy_indices_of_factor.end());
897                 } else
898                         free_indices_of_factor = it1->get_free_indices();
899                 un.insert(un.end(), free_indices_of_factor.begin(), free_indices_of_factor.end());
900         }
901         exvector local_dummy_indices;
902         find_free_and_dummy(un, free_indices, local_dummy_indices);
903         local_dummy_indices.insert(local_dummy_indices.end(), individual_dummy_indices.begin(), individual_dummy_indices.end());
904
905         // Filter out the dummy indices with variance
906         exvector variant_dummy_indices;
907         find_variant_indices(local_dummy_indices, variant_dummy_indices);
908
909         // Any indices with variance present at all?
910         if (!variant_dummy_indices.empty()) {
911
912                 // Yes, bring the product into a canonical order that only depends on
913                 // the base expressions of indexed objects
914                 if (!non_commutative)
915                         std::sort(v.begin(), v.end(), ex_base_is_less());
916
917                 exvector moved_indices;
918
919                 // Iterate over all indexed objects in the product
920                 for (it1 = v.begin(), itend = v.end(); it1 != itend; ++it1) {
921                         if (!is_a<indexed>(*it1))
922                                 continue;
923
924                         if (reposition_dummy_indices(*it1, variant_dummy_indices, moved_indices))
925                                 something_changed = true;
926                 }
927         }
928
929         ex r;
930         if (something_changed)
931                 r = non_commutative ? ex(ncmul(v, true)) : ex(mul(v));
932         else
933                 r = e;
934
935         // The result should be symmetric with respect to exchange of dummy
936         // indices, so if the symmetrization vanishes, the whole expression is
937         // zero. This detects things like eps.i.j.k * p.j * p.k = 0.
938         ex q = idx_symmetrization<idx>(r, local_dummy_indices);
939         if (q.is_zero()) {
940                 free_indices.clear();
941                 return _ex0;
942         }
943         q = idx_symmetrization<varidx>(q, local_dummy_indices);
944         if (q.is_zero()) {
945                 free_indices.clear();
946                 return _ex0;
947         }
948         q = idx_symmetrization<spinidx>(q, local_dummy_indices);
949         if (q.is_zero()) {
950                 free_indices.clear();
951                 return _ex0;
952         }
953
954         // Dummy index renaming
955         r = rename_dummy_indices<idx>(r, dummy_indices, local_dummy_indices);
956         r = rename_dummy_indices<varidx>(r, dummy_indices, local_dummy_indices);
957         r = rename_dummy_indices<spinidx>(r, dummy_indices, local_dummy_indices);
958
959         // Product of indexed object with a scalar?
960         if (is_exactly_a<mul>(r) && r.nops() == 2
961          && is_exactly_a<numeric>(r.op(1)) && is_a<indexed>(r.op(0)))
962                 return ex_to<basic>(r.op(0).op(0)).scalar_mul_indexed(r.op(0), ex_to<numeric>(r.op(1)));
963         else
964                 return r;
965 }
966
967 /** This structure stores the original and symmetrized versions of terms
968  *  obtained during the simplification of sums. */
969 class terminfo {
970 public:
971         terminfo(const ex & orig_, const ex & symm_) : orig(orig_), symm(symm_) {}
972
973         ex orig; /**< original term */
974         ex symm; /**< symmtrized term */
975 };
976
977 class terminfo_is_less {
978 public:
979         bool operator() (const terminfo & ti1, const terminfo & ti2) const
980         {
981                 return (ti1.symm.compare(ti2.symm) < 0);
982         }
983 };
984
985 /** This structure stores the individual symmetrized terms obtained during
986  *  the simplification of sums. */
987 class symminfo {
988 public:
989         symminfo() : num(0) {}
990
991         symminfo(const ex & symmterm_, const ex & orig_, size_t num_) : orig(orig_), num(num_)
992         {
993                 if (is_exactly_a<mul>(symmterm_) && is_exactly_a<numeric>(symmterm_.op(symmterm_.nops()-1))) {
994                         coeff = symmterm_.op(symmterm_.nops()-1);
995                         symmterm = symmterm_ / coeff;
996                 } else {
997                         coeff = 1;
998                         symmterm = symmterm_;
999                 }
1000         }
1001
1002         ex symmterm;  /**< symmetrized term */
1003         ex coeff;     /**< coefficient of symmetrized term */
1004         ex orig;      /**< original term */
1005         size_t num; /**< how many symmetrized terms resulted from the original term */
1006 };
1007
1008 class symminfo_is_less_by_symmterm {
1009 public:
1010         bool operator() (const symminfo & si1, const symminfo & si2) const
1011         {
1012                 return (si1.symmterm.compare(si2.symmterm) < 0);
1013         }
1014 };
1015
1016 class symminfo_is_less_by_orig {
1017 public:
1018         bool operator() (const symminfo & si1, const symminfo & si2) const
1019         {
1020                 return (si1.orig.compare(si2.orig) < 0);
1021         }
1022 };
1023
1024 bool hasindex(const ex &x, const ex &sym)
1025 {       
1026         if(is_a<idx>(x) && x.op(0)==sym)
1027                 return true;
1028         else
1029                 for(size_t i=0; i<x.nops(); ++i)
1030                         if(hasindex(x.op(i), sym))
1031                                 return true;
1032         return false;
1033 }
1034
1035 /** Simplify indexed expression, return list of free indices. */
1036 ex simplify_indexed(const ex & e, exvector & free_indices, exvector & dummy_indices, const scalar_products & sp)
1037 {
1038         // Expand the expression
1039         ex e_expanded = e.expand();
1040
1041         // Simplification of single indexed object: just find the free indices
1042         // and perform dummy index renaming/repositioning
1043         if (is_a<indexed>(e_expanded)) {
1044
1045                 // Find the dummy indices
1046                 const indexed &i = ex_to<indexed>(e_expanded);
1047                 exvector local_dummy_indices;
1048                 find_free_and_dummy(i.seq.begin() + 1, i.seq.end(), free_indices, local_dummy_indices);
1049
1050                 // Filter out the dummy indices with variance
1051                 exvector variant_dummy_indices;
1052                 find_variant_indices(local_dummy_indices, variant_dummy_indices);
1053
1054                 // Any indices with variance present at all?
1055                 if (!variant_dummy_indices.empty()) {
1056
1057                         // Yes, reposition them
1058                         exvector moved_indices;
1059                         reposition_dummy_indices(e_expanded, variant_dummy_indices, moved_indices);
1060                 }
1061
1062                 // Rename the dummy indices
1063                 e_expanded = rename_dummy_indices<idx>(e_expanded, dummy_indices, local_dummy_indices);
1064                 e_expanded = rename_dummy_indices<varidx>(e_expanded, dummy_indices, local_dummy_indices);
1065                 e_expanded = rename_dummy_indices<spinidx>(e_expanded, dummy_indices, local_dummy_indices);
1066                 return e_expanded;
1067         }
1068
1069         // Simplification of sum = sum of simplifications, check consistency of
1070         // free indices in each term
1071         if (is_exactly_a<add>(e_expanded)) {
1072                 bool first = true;
1073                 ex sum;
1074                 free_indices.clear();
1075
1076                 for (size_t i=0; i<e_expanded.nops(); i++) {
1077                         exvector free_indices_of_term;
1078                         ex term = simplify_indexed(e_expanded.op(i), free_indices_of_term, dummy_indices, sp);
1079                         if (!term.is_zero()) {
1080                                 if (first) {
1081                                         free_indices = free_indices_of_term;
1082                                         sum = term;
1083                                         first = false;
1084                                 } else {
1085                                         if (!indices_consistent(free_indices, free_indices_of_term)) {
1086                                                 std::ostringstream s;
1087                                                 s << "simplify_indexed: inconsistent indices in sum: ";
1088                                                 s << exprseq(free_indices) << " vs. " << exprseq(free_indices_of_term);
1089                                                 throw (std::runtime_error(s.str()));
1090                                         }
1091                                         if (is_a<indexed>(sum) && is_a<indexed>(term))
1092                                                 sum = ex_to<basic>(sum.op(0)).add_indexed(sum, term);
1093                                         else
1094                                                 sum += term;
1095                                 }
1096                         }
1097                 }
1098
1099                 // If the sum turns out to be zero, we are finished
1100                 if (sum.is_zero()) {
1101                         free_indices.clear();
1102                         return sum;
1103                 }
1104
1105                 // More than one term and more than one dummy index?
1106                 size_t num_terms_orig = (is_exactly_a<add>(sum) ? sum.nops() : 1);
1107                 if (num_terms_orig < 2 || dummy_indices.size() < 2)
1108                         return sum;
1109
1110                 // Chop the sum into terms and symmetrize each one over the dummy
1111                 // indices
1112                 std::vector<terminfo> terms;
1113                 for (size_t i=0; i<sum.nops(); i++) {
1114                         const ex & term = sum.op(i);
1115                         exvector dummy_indices_of_term;
1116                         dummy_indices_of_term.reserve(dummy_indices.size());
1117                         for(exvector::iterator i=dummy_indices.begin(); i!=dummy_indices.end(); ++i)
1118                                 if(hasindex(term,i->op(0)))
1119                                         dummy_indices_of_term.push_back(*i);
1120                         ex term_symm = idx_symmetrization<idx>(term, dummy_indices_of_term);
1121                         term_symm = idx_symmetrization<varidx>(term_symm, dummy_indices_of_term);
1122                         term_symm = idx_symmetrization<spinidx>(term_symm, dummy_indices_of_term);
1123                         if (term_symm.is_zero())
1124                                 continue;
1125                         terms.push_back(terminfo(term, term_symm));
1126                 }
1127
1128                 // Sort by symmetrized terms
1129                 std::sort(terms.begin(), terms.end(), terminfo_is_less());
1130
1131                 // Combine equal symmetrized terms
1132                 std::vector<terminfo> terms_pass2;
1133                 for (std::vector<terminfo>::const_iterator i=terms.begin(); i!=terms.end(); ) {
1134                         size_t num = 1;
1135                         std::vector<terminfo>::const_iterator j = i + 1;
1136                         while (j != terms.end() && j->symm == i->symm) {
1137                                 num++;
1138                                 j++;
1139                         }
1140                         terms_pass2.push_back(terminfo(i->orig * num, i->symm * num));
1141                         i = j;
1142                 }
1143
1144                 // If there is only one term left, we are finished
1145                 if (terms_pass2.size() == 1)
1146                         return terms_pass2[0].orig;
1147
1148                 // Chop the symmetrized terms into subterms
1149                 std::vector<symminfo> sy;
1150                 for (std::vector<terminfo>::const_iterator i=terms_pass2.begin(); i!=terms_pass2.end(); ++i) {
1151                         if (is_exactly_a<add>(i->symm)) {
1152                                 size_t num = i->symm.nops();
1153                                 for (size_t j=0; j<num; j++)
1154                                         sy.push_back(symminfo(i->symm.op(j), i->orig, num));
1155                         } else
1156                                 sy.push_back(symminfo(i->symm, i->orig, 1));
1157                 }
1158
1159                 // Sort by symmetrized subterms
1160                 std::sort(sy.begin(), sy.end(), symminfo_is_less_by_symmterm());
1161
1162                 // Combine equal symmetrized subterms
1163                 std::vector<symminfo> sy_pass2;
1164                 exvector result;
1165                 for (std::vector<symminfo>::const_iterator i=sy.begin(); i!=sy.end(); ) {
1166
1167                         // Combine equal terms
1168                         std::vector<symminfo>::const_iterator j = i + 1;
1169                         if (j != sy.end() && j->symmterm == i->symmterm) {
1170
1171                                 // More than one term, collect the coefficients
1172                                 ex coeff = i->coeff;
1173                                 while (j != sy.end() && j->symmterm == i->symmterm) {
1174                                         coeff += j->coeff;
1175                                         j++;
1176                                 }
1177
1178                                 // Add combined term to result
1179                                 if (!coeff.is_zero())
1180                                         result.push_back(coeff * i->symmterm);
1181
1182                         } else {
1183
1184                                 // Single term, store for second pass
1185                                 sy_pass2.push_back(*i);
1186                         }
1187
1188                         i = j;
1189                 }
1190
1191                 // Were there any remaining terms that didn't get combined?
1192                 if (sy_pass2.size() > 0) {
1193
1194                         // Yes, sort by their original terms
1195                         std::sort(sy_pass2.begin(), sy_pass2.end(), symminfo_is_less_by_orig());
1196
1197                         for (std::vector<symminfo>::const_iterator i=sy_pass2.begin(); i!=sy_pass2.end(); ) {
1198
1199                                 // How many symmetrized terms of this original term are left?
1200                                 size_t num = 1;
1201                                 std::vector<symminfo>::const_iterator j = i + 1;
1202                                 while (j != sy_pass2.end() && j->orig == i->orig) {
1203                                         num++;
1204                                         j++;
1205                                 }
1206
1207                                 if (num == i->num) {
1208
1209                                         // All terms left, then add the original term to the result
1210                                         result.push_back(i->orig);
1211
1212                                 } else {
1213
1214                                         // Some terms were combined with others, add up the remaining symmetrized terms
1215                                         std::vector<symminfo>::const_iterator k;
1216                                         for (k=i; k!=j; k++)
1217                                                 result.push_back(k->coeff * k->symmterm);
1218                                 }
1219
1220                                 i = j;
1221                         }
1222                 }
1223
1224                 // Add all resulting terms
1225                 ex sum_symm = (new add(result))->setflag(status_flags::dynallocated);
1226                 if (sum_symm.is_zero())
1227                         free_indices.clear();
1228                 return sum_symm;
1229         }
1230
1231         // Simplification of products
1232         if (is_exactly_a<mul>(e_expanded)
1233          || is_exactly_a<ncmul>(e_expanded)
1234          || (is_exactly_a<power>(e_expanded) && is_a<indexed>(e_expanded.op(0)) && e_expanded.op(1).is_equal(_ex2)))
1235                 return simplify_indexed_product(e_expanded, free_indices, dummy_indices, sp);
1236
1237         // Cannot do anything
1238         free_indices.clear();
1239         return e_expanded;
1240 }
1241
1242 /** Simplify/canonicalize expression containing indexed objects. This
1243  *  performs contraction of dummy indices where possible and checks whether
1244  *  the free indices in sums are consistent.
1245  *
1246  *  @param options Simplification options (currently unused)
1247  *  @return simplified expression */
1248 ex ex::simplify_indexed(unsigned options) const
1249 {
1250         exvector free_indices, dummy_indices;
1251         scalar_products sp;
1252         return GiNaC::simplify_indexed(*this, free_indices, dummy_indices, sp);
1253 }
1254
1255 /** Simplify/canonicalize expression containing indexed objects. This
1256  *  performs contraction of dummy indices where possible, checks whether
1257  *  the free indices in sums are consistent, and automatically replaces
1258  *  scalar products by known values if desired.
1259  *
1260  *  @param sp Scalar products to be replaced automatically
1261  *  @param options Simplification options (currently unused)
1262  *  @return simplified expression */
1263 ex ex::simplify_indexed(const scalar_products & sp, unsigned options) const
1264 {
1265         exvector free_indices, dummy_indices;
1266         return GiNaC::simplify_indexed(*this, free_indices, dummy_indices, sp);
1267 }
1268
1269 /** Symmetrize expression over its free indices. */
1270 ex ex::symmetrize() const
1271 {
1272         return GiNaC::symmetrize(*this, get_free_indices());
1273 }
1274
1275 /** Antisymmetrize expression over its free indices. */
1276 ex ex::antisymmetrize() const
1277 {
1278         return GiNaC::antisymmetrize(*this, get_free_indices());
1279 }
1280
1281 /** Symmetrize expression by cyclic permutation over its free indices. */
1282 ex ex::symmetrize_cyclic() const
1283 {
1284         return GiNaC::symmetrize_cyclic(*this, get_free_indices());
1285 }
1286
1287 //////////
1288 // helper classes
1289 //////////
1290
1291 spmapkey::spmapkey(const ex & v1_, const ex & v2_, const ex & dim_) : dim(dim_)
1292 {
1293         // If indexed, extract base objects
1294         ex s1 = is_a<indexed>(v1_) ? v1_.op(0) : v1_;
1295         ex s2 = is_a<indexed>(v2_) ? v2_.op(0) : v2_;
1296
1297         // Enforce canonical order in pair
1298         if (s1.compare(s2) > 0) {
1299                 v1 = s2;
1300                 v2 = s1;
1301         } else {
1302                 v1 = s1;
1303                 v2 = s2;
1304         }
1305 }
1306
1307 bool spmapkey::operator==(const spmapkey &other) const
1308 {
1309         if (!v1.is_equal(other.v1))
1310                 return false;
1311         if (!v2.is_equal(other.v2))
1312                 return false;
1313         if (is_a<wildcard>(dim) || is_a<wildcard>(other.dim))
1314                 return true;
1315         else
1316                 return dim.is_equal(other.dim);
1317 }
1318
1319 bool spmapkey::operator<(const spmapkey &other) const
1320 {
1321         int cmp = v1.compare(other.v1);
1322         if (cmp)
1323                 return cmp < 0;
1324         cmp = v2.compare(other.v2);
1325         if (cmp)
1326                 return cmp < 0;
1327
1328         // Objects are equal, now check dimensions
1329         if (is_a<wildcard>(dim) || is_a<wildcard>(other.dim))
1330                 return false;
1331         else
1332                 return dim.compare(other.dim) < 0;
1333 }
1334
1335 void spmapkey::debugprint() const
1336 {
1337         std::cerr << "(" << v1 << "," << v2 << "," << dim << ")";
1338 }
1339
1340 void scalar_products::add(const ex & v1, const ex & v2, const ex & sp)
1341 {
1342         spm[spmapkey(v1, v2)] = sp;
1343 }
1344
1345 void scalar_products::add(const ex & v1, const ex & v2, const ex & dim, const ex & sp)
1346 {
1347         spm[spmapkey(v1, v2, dim)] = sp;
1348 }
1349
1350 void scalar_products::add_vectors(const lst & l, const ex & dim)
1351 {
1352         // Add all possible pairs of products
1353         for (lst::const_iterator it1 = l.begin(); it1 != l.end(); ++it1)
1354                 for (lst::const_iterator it2 = l.begin(); it2 != l.end(); ++it2)
1355                         add(*it1, *it2, *it1 * *it2);
1356 }
1357
1358 void scalar_products::clear()
1359 {
1360         spm.clear();
1361 }
1362
1363 /** Check whether scalar product pair is defined. */
1364 bool scalar_products::is_defined(const ex & v1, const ex & v2, const ex & dim) const
1365 {
1366         return spm.find(spmapkey(v1, v2, dim)) != spm.end();
1367 }
1368
1369 /** Return value of defined scalar product pair. */
1370 ex scalar_products::evaluate(const ex & v1, const ex & v2, const ex & dim) const
1371 {
1372         return spm.find(spmapkey(v1, v2, dim))->second;
1373 }
1374
1375 void scalar_products::debugprint() const
1376 {
1377         std::cerr << "map size=" << spm.size() << std::endl;
1378         spmap::const_iterator i = spm.begin(), end = spm.end();
1379         while (i != end) {
1380                 const spmapkey & k = i->first;
1381                 std::cerr << "item key=";
1382                 k.debugprint();
1383                 std::cerr << ", value=" << i->second << std::endl;
1384                 ++i;
1385         }
1386 }
1387
1388 exvector get_all_dummy_indices_safely(const ex & e)
1389 {
1390         if (is_a<indexed>(e))
1391                 return ex_to<indexed>(e).get_dummy_indices();
1392         else if (is_a<power>(e) && e.op(1)==2) {
1393                 return e.op(0).get_free_indices();
1394         }       
1395         else if (is_a<mul>(e) || is_a<ncmul>(e)) {
1396                 exvector dummies;
1397                 exvector free_indices;
1398                 for (std::size_t i = 0; i < e.nops(); ++i) {
1399                         exvector dummies_of_factor = get_all_dummy_indices_safely(e.op(i));
1400                         dummies.insert(dummies.end(), dummies_of_factor.begin(),
1401                                 dummies_of_factor.end());
1402                         exvector free_of_factor = e.op(i).get_free_indices();
1403                         free_indices.insert(free_indices.begin(), free_of_factor.begin(),
1404                                 free_of_factor.end());
1405                 }
1406                 exvector free_out, dummy_out;
1407                 find_free_and_dummy(free_indices.begin(), free_indices.end(), free_out,
1408                         dummy_out);
1409                 dummies.insert(dummies.end(), dummy_out.begin(), dummy_out.end());
1410                 return dummies;
1411         }
1412         else if(is_a<add>(e)) {
1413                 exvector result;
1414                 for(std::size_t i = 0; i < e.nops(); ++i) {
1415                         exvector dummies_of_term = get_all_dummy_indices_safely(e.op(i));
1416                         sort(dummies_of_term.begin(), dummies_of_term.end());
1417                         exvector new_vec;
1418                         set_union(result.begin(), result.end(), dummies_of_term.begin(),
1419                                 dummies_of_term.end(), std::back_inserter<exvector>(new_vec),
1420                                 ex_is_less());
1421                         result.swap(new_vec);
1422                 }
1423                 return result;
1424         }
1425         return exvector();
1426 }
1427
1428 /** Returns all dummy indices from the exvector */
1429 exvector get_all_dummy_indices(const ex & e)
1430 {
1431         exvector p;
1432         bool nc;
1433         product_to_exvector(e, p, nc);
1434         exvector::const_iterator ip = p.begin(), ipend = p.end();
1435         exvector v, v1;
1436         while (ip != ipend) {
1437                 if (is_a<indexed>(*ip)) {
1438                         v1 = ex_to<indexed>(*ip).get_dummy_indices();
1439                         v.insert(v.end(), v1.begin(), v1.end());
1440                         exvector::const_iterator ip1 = ip+1;
1441                         while (ip1 != ipend) {
1442                                 if (is_a<indexed>(*ip1)) {
1443                                         v1 = ex_to<indexed>(*ip).get_dummy_indices(ex_to<indexed>(*ip1));
1444                                         v.insert(v.end(), v1.begin(), v1.end());
1445                                 }
1446                                 ++ip1;
1447                         }
1448                 }
1449                 ++ip;
1450         }
1451         return v;
1452 }
1453
1454 lst rename_dummy_indices_uniquely(const exvector & va, const exvector & vb)
1455 {
1456         exvector common_indices;
1457         set_intersection(va.begin(), va.end(), vb.begin(), vb.end(), std::back_insert_iterator<exvector>(common_indices), ex_is_less());
1458         if (common_indices.empty()) {
1459                 return lst(lst(), lst());
1460         } else {
1461                 exvector new_indices, old_indices;
1462                 old_indices.reserve(2*common_indices.size());
1463                 new_indices.reserve(2*common_indices.size());
1464                 exvector::const_iterator ip = common_indices.begin(), ipend = common_indices.end();
1465                 while (ip != ipend) {
1466                         ex newsym=(new symbol)->setflag(status_flags::dynallocated);
1467                         ex newidx;
1468                         if(is_exactly_a<spinidx>(*ip))
1469                                 newidx = (new spinidx(newsym, ex_to<spinidx>(*ip).get_dim(),
1470                                                 ex_to<spinidx>(*ip).is_covariant(),
1471                                                 ex_to<spinidx>(*ip).is_dotted()))
1472                                         -> setflag(status_flags::dynallocated);
1473                         else if (is_exactly_a<varidx>(*ip))
1474                                 newidx = (new varidx(newsym, ex_to<varidx>(*ip).get_dim(),
1475                                                 ex_to<varidx>(*ip).is_covariant()))
1476                                         -> setflag(status_flags::dynallocated);
1477                         else
1478                                 newidx = (new idx(newsym, ex_to<idx>(*ip).get_dim()))
1479                                         -> setflag(status_flags::dynallocated);
1480                         old_indices.push_back(*ip);
1481                         new_indices.push_back(newidx);
1482                         if(is_a<varidx>(*ip)) {
1483                                 old_indices.push_back(ex_to<varidx>(*ip).toggle_variance());
1484                                 new_indices.push_back(ex_to<varidx>(newidx).toggle_variance());
1485                         }
1486                         ++ip;
1487                 }
1488                 return lst(lst(old_indices.begin(), old_indices.end()), lst(new_indices.begin(), new_indices.end()));
1489         }
1490 }
1491
1492 ex rename_dummy_indices_uniquely(const exvector & va, const exvector & vb, const ex & b)
1493 {
1494         lst indices_subs = rename_dummy_indices_uniquely(va, vb);
1495         return (indices_subs.op(0).nops()>0 ? b.subs(ex_to<lst>(indices_subs.op(0)), ex_to<lst>(indices_subs.op(1)), subs_options::no_pattern|subs_options::no_index_renaming) : b);
1496 }
1497
1498 ex rename_dummy_indices_uniquely(const ex & a, const ex & b)
1499 {
1500         exvector va = get_all_dummy_indices_safely(a);
1501         if (va.size() > 0) {
1502                 exvector vb = get_all_dummy_indices_safely(b);
1503                 if (vb.size() > 0) {
1504                         sort(va.begin(), va.end(), ex_is_less());
1505                         sort(vb.begin(), vb.end(), ex_is_less());
1506                         lst indices_subs = rename_dummy_indices_uniquely(va, vb);
1507                         if (indices_subs.op(0).nops() > 0)
1508                                 return b.subs(ex_to<lst>(indices_subs.op(0)), ex_to<lst>(indices_subs.op(1)), subs_options::no_pattern|subs_options::no_index_renaming);
1509                 }
1510         }
1511         return b;
1512 }
1513
1514 ex rename_dummy_indices_uniquely(exvector & va, const ex & b, bool modify_va)
1515 {
1516         if (va.size() > 0) {
1517                 exvector vb = get_all_dummy_indices_safely(b);
1518                 if (vb.size() > 0) {
1519                         sort(vb.begin(), vb.end(), ex_is_less());
1520                         lst indices_subs = rename_dummy_indices_uniquely(va, vb);
1521                         if (indices_subs.op(0).nops() > 0) {
1522                                 if (modify_va) {
1523                                         for (lst::const_iterator i = ex_to<lst>(indices_subs.op(1)).begin(); i != ex_to<lst>(indices_subs.op(1)).end(); ++i)
1524                                                 va.push_back(*i);
1525                                         exvector uncommon_indices;
1526                                         set_difference(vb.begin(), vb.end(), indices_subs.op(0).begin(), indices_subs.op(0).end(), std::back_insert_iterator<exvector>(uncommon_indices), ex_is_less());
1527                                         exvector::const_iterator ip = uncommon_indices.begin(), ipend = uncommon_indices.end();
1528                                         while (ip != ipend) {
1529                                                 va.push_back(*ip);
1530                                                 ++ip;
1531                                         }
1532                                         sort(va.begin(), va.end(), ex_is_less());
1533                                 }
1534                                 return b.subs(ex_to<lst>(indices_subs.op(0)), ex_to<lst>(indices_subs.op(1)), subs_options::no_pattern|subs_options::no_index_renaming);
1535                         }
1536                 }
1537         }
1538         return b;
1539 }
1540
1541 ex expand_dummy_sum(const ex & e, bool subs_idx)
1542 {
1543         ex e_expanded = e.expand();
1544         pointer_to_map_function_1arg<bool> fcn(expand_dummy_sum, subs_idx);
1545         if (is_a<add>(e_expanded) || is_a<lst>(e_expanded) || is_a<matrix>(e_expanded)) {
1546                 return e_expanded.map(fcn);
1547         } else if (is_a<ncmul>(e_expanded) || is_a<mul>(e_expanded) || is_a<power>(e_expanded) || is_a<indexed>(e_expanded)) {
1548                 exvector v;
1549                 if (is_a<indexed>(e_expanded))
1550                         v = ex_to<indexed>(e_expanded).get_dummy_indices();
1551                 else
1552                         v = get_all_dummy_indices(e_expanded);
1553                 ex result = e_expanded;
1554                 for(exvector::const_iterator it=v.begin(); it!=v.end(); ++it) {
1555                         ex nu = *it;
1556                         if (ex_to<idx>(nu).get_dim().info(info_flags::nonnegint)) {
1557                                 int idim = ex_to<numeric>(ex_to<idx>(nu).get_dim()).to_int();
1558                                 ex en = 0;
1559                                 for (int i=0; i < idim; i++) {
1560                                         if (subs_idx && is_a<varidx>(nu)) {
1561                                                 ex other = ex_to<varidx>(nu).toggle_variance();
1562                                                 en += result.subs(lst(
1563                                                         nu == idx(i, idim),
1564                                                         other == idx(i, idim)
1565                                                 ));
1566                                         } else {
1567                                                 en += result.subs( nu.op(0) == i );
1568                                         }
1569                                 }
1570                                 result = en;
1571                         }
1572                 }
1573                 return result;
1574         } else {
1575                 return e;
1576         }
1577 }
1578
1579 } // namespace GiNaC