]> www.ginac.de Git - ginac.git/blob - ginac/clifford.cpp
- added collect_common_factors()
[ginac.git] / ginac / clifford.cpp
1 /** @file clifford.cpp
2  *
3  *  Implementation of GiNaC's clifford algebra (Dirac gamma) objects. */
4
5 /*
6  *  GiNaC Copyright (C) 1999-2002 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 #include <iostream>
24 #include <stdexcept>
25
26 #include "clifford.h"
27 #include "ex.h"
28 #include "idx.h"
29 #include "ncmul.h"
30 #include "symbol.h"
31 #include "numeric.h" // for I
32 #include "symmetry.h"
33 #include "lst.h"
34 #include "relational.h"
35 #include "mul.h"
36 #include "print.h"
37 #include "archive.h"
38 #include "utils.h"
39
40 namespace GiNaC {
41
42 GINAC_IMPLEMENT_REGISTERED_CLASS(clifford, indexed)
43 GINAC_IMPLEMENT_REGISTERED_CLASS(diracone, tensor)
44 GINAC_IMPLEMENT_REGISTERED_CLASS(diracgamma, tensor)
45 GINAC_IMPLEMENT_REGISTERED_CLASS(diracgamma5, tensor)
46 GINAC_IMPLEMENT_REGISTERED_CLASS(diracgammaL, tensor)
47 GINAC_IMPLEMENT_REGISTERED_CLASS(diracgammaR, tensor)
48
49 //////////
50 // default ctor, dtor, copy ctor, assignment operator and helpers
51 //////////
52
53 clifford::clifford() : representation_label(0)
54 {
55         tinfo_key = TINFO_clifford;
56 }
57
58 void clifford::copy(const clifford & other)
59 {
60         inherited::copy(other);
61         representation_label = other.representation_label;
62 }
63
64 DEFAULT_DESTROY(clifford)
65 DEFAULT_CTORS(diracone)
66 DEFAULT_CTORS(diracgamma)
67 DEFAULT_CTORS(diracgamma5)
68 DEFAULT_CTORS(diracgammaL)
69 DEFAULT_CTORS(diracgammaR)
70
71 //////////
72 // other constructors
73 //////////
74
75 /** Construct object without any indices. This constructor is for internal
76  *  use only. Use the dirac_ONE() function instead.
77  *  @see dirac_ONE */
78 clifford::clifford(const ex & b, unsigned char rl) : inherited(b), representation_label(rl)
79 {
80         tinfo_key = TINFO_clifford;
81 }
82
83 /** Construct object with one Lorentz index. This constructor is for internal
84  *  use only. Use the dirac_gamma() function instead.
85  *  @see dirac_gamma */
86 clifford::clifford(const ex & b, const ex & mu, unsigned char rl) : inherited(b, mu), representation_label(rl)
87 {
88         GINAC_ASSERT(is_a<varidx>(mu));
89         tinfo_key = TINFO_clifford;
90 }
91
92 clifford::clifford(unsigned char rl, const exvector & v, bool discardable) : inherited(sy_none(), v, discardable), representation_label(rl)
93 {
94         tinfo_key = TINFO_clifford;
95 }
96
97 clifford::clifford(unsigned char rl, exvector * vp) : inherited(sy_none(), vp), representation_label(rl)
98 {
99         tinfo_key = TINFO_clifford;
100 }
101
102 //////////
103 // archiving
104 //////////
105
106 clifford::clifford(const archive_node &n, const lst &sym_lst) : inherited(n, sym_lst)
107 {
108         unsigned rl;
109         n.find_unsigned("label", rl);
110         representation_label = rl;
111 }
112
113 void clifford::archive(archive_node &n) const
114 {
115         inherited::archive(n);
116         n.add_unsigned("label", representation_label);
117 }
118
119 DEFAULT_UNARCHIVE(clifford)
120 DEFAULT_ARCHIVING(diracone)
121 DEFAULT_ARCHIVING(diracgamma)
122 DEFAULT_ARCHIVING(diracgamma5)
123 DEFAULT_ARCHIVING(diracgammaL)
124 DEFAULT_ARCHIVING(diracgammaR)
125
126 //////////
127 // functions overriding virtual functions from base classes
128 //////////
129
130 int clifford::compare_same_type(const basic & other) const
131 {
132         GINAC_ASSERT(is_a<clifford>(other));
133         const clifford &o = static_cast<const clifford &>(other);
134
135         if (representation_label != o.representation_label) {
136                 // different representation label
137                 return representation_label < o.representation_label ? -1 : 1;
138         }
139
140         return inherited::compare_same_type(other);
141 }
142
143 bool clifford::match_same_type(const basic & other) const
144 {
145         GINAC_ASSERT(is_a<clifford>(other));
146         const clifford &o = static_cast<const clifford &>(other);
147
148         return representation_label == o.representation_label;
149 }
150
151 void clifford::print(const print_context & c, unsigned level) const
152 {
153         if (!is_a<diracgamma5>(seq[0]) && !is_a<diracgammaL>(seq[0]) &&
154             !is_a<diracgammaR>(seq[0]) && !is_a<diracgamma>(seq[0]) &&
155             !is_a<diracone>(seq[0])) {
156
157                 // dirac_slash() object is printed differently
158                 if (is_a<print_tree>(c))
159                         inherited::print(c, level);
160                 else if (is_a<print_latex>(c)) {
161                         c.s << "{";
162                         seq[0].print(c, level);
163                         c.s << "\\hspace{-1.0ex}/}";
164                 } else {
165                         seq[0].print(c, level);
166                         c.s << "\\";
167                 }
168
169         } else
170                 inherited::print(c, level);
171 }
172
173 DEFAULT_COMPARE(diracone)
174 DEFAULT_COMPARE(diracgamma)
175 DEFAULT_COMPARE(diracgamma5)
176 DEFAULT_COMPARE(diracgammaL)
177 DEFAULT_COMPARE(diracgammaR)
178
179 DEFAULT_PRINT_LATEX(diracone, "ONE", "\\mathbb{1}")
180 DEFAULT_PRINT_LATEX(diracgamma, "gamma", "\\gamma")
181 DEFAULT_PRINT_LATEX(diracgamma5, "gamma5", "{\\gamma^5}")
182 DEFAULT_PRINT_LATEX(diracgammaL, "gammaL", "{\\gamma_L}")
183 DEFAULT_PRINT_LATEX(diracgammaR, "gammaR", "{\\gamma_R}")
184
185 /** This function decomposes gamma~mu -> (1, mu) and a\ -> (a.ix, ix) */
186 static void base_and_index(const ex & c, ex & b, ex & i)
187 {
188         GINAC_ASSERT(is_a<clifford>(c));
189         GINAC_ASSERT(c.nops() == 2);
190
191         if (is_a<diracgamma>(c.op(0))) { // proper dirac gamma object
192                 i = c.op(1);
193                 b = _ex1;
194         } else if (is_a<diracgamma5>(c.op(0)) || is_a<diracgammaL>(c.op(0)) || is_a<diracgammaR>(c.op(0))) { // gamma5/L/R
195                 i = _ex0;
196                 b = _ex1;
197         } else { // slash object, generate new dummy index
198                 varidx ix((new symbol)->setflag(status_flags::dynallocated), ex_to<idx>(c.op(1)).get_dim());
199                 b = indexed(c.op(0), ix.toggle_variance());
200                 i = ix;
201         }
202 }
203
204 /** Contraction of a gamma matrix with something else. */
205 bool diracgamma::contract_with(exvector::iterator self, exvector::iterator other, exvector & v) const
206 {
207         GINAC_ASSERT(is_a<clifford>(*self));
208         GINAC_ASSERT(is_a<indexed>(*other));
209         GINAC_ASSERT(is_a<diracgamma>(self->op(0)));
210         unsigned char rl = ex_to<clifford>(*self).get_representation_label();
211
212         if (is_a<clifford>(*other)) {
213
214                 // Contraction only makes sense if the represenation labels are equal
215                 if (ex_to<clifford>(*other).get_representation_label() != rl)
216                         return false;
217
218                 ex dim = ex_to<idx>(self->op(1)).get_dim();
219
220                 // gamma~mu gamma.mu = dim ONE
221                 if (other - self == 1) {
222                         *self = dim;
223                         *other = dirac_ONE(rl);
224                         return true;
225
226                 // gamma~mu gamma~alpha gamma.mu = (2-dim) gamma~alpha
227                 } else if (other - self == 2
228                         && is_a<clifford>(self[1])) {
229                         *self = 2 - dim;
230                         *other = _ex1;
231                         return true;
232
233                 // gamma~mu gamma~alpha gamma~beta gamma.mu = 4 g~alpha~beta + (dim-4) gamam~alpha gamma~beta
234                 } else if (other - self == 3
235                         && is_a<clifford>(self[1])
236                         && is_a<clifford>(self[2])) {
237                         ex b1, i1, b2, i2;
238                         base_and_index(self[1], b1, i1);
239                         base_and_index(self[2], b2, i2);
240                         *self = 4 * lorentz_g(i1, i2) * b1 * b2 * dirac_ONE(rl) + (dim - 4) * self[1] * self[2];
241                         self[1] = _ex1;
242                         self[2] = _ex1;
243                         *other = _ex1;
244                         return true;
245
246                 // gamma~mu gamma~alpha gamma~beta gamma~delta gamma.mu = -2 gamma~delta gamma~beta gamma~alpha - (dim-4) gamam~alpha gamma~beta gamma~delta
247                 } else if (other - self == 4
248                         && is_a<clifford>(self[1])
249                         && is_a<clifford>(self[2])
250                         && is_a<clifford>(self[3])) {
251                         *self = -2 * self[3] * self[2] * self[1] - (dim - 4) * self[1] * self[2] * self[3];
252                         self[1] = _ex1;
253                         self[2] = _ex1;
254                         self[3] = _ex1;
255                         *other = _ex1;
256                         return true;
257
258                 // gamma~mu S gamma~alpha gamma.mu = 2 gamma~alpha S - gamma~mu S gamma.mu gamma~alpha
259                 // (commutate contracted indices towards each other, simplify_indexed()
260                 // will re-expand and re-run the simplification)
261                 } else {
262                         exvector::iterator it = self + 1, next_to_last = other - 1;
263                         while (it != other) {
264                                 if (!is_a<clifford>(*it))
265                                         return false;
266                                 ++it;
267                         }
268
269                         it = self + 1;
270                         ex S = _ex1;
271                         while (it != next_to_last) {
272                                 S *= *it;
273                                 *it++ = _ex1;
274                         }
275
276                         *self = 2 * (*next_to_last) * S - (*self) * S * (*other) * (*next_to_last);
277                         *next_to_last = _ex1;
278                         *other = _ex1;
279                         return true;
280                 }
281         }
282
283         return false;
284 }
285
286 /** Perform automatic simplification on noncommutative product of clifford
287  *  objects. This removes superfluous ONEs, permutes gamma5/L/R's to the front
288  *  and removes squares of gamma objects. */
289 ex clifford::simplify_ncmul(const exvector & v) const
290 {
291         exvector s;
292         s.reserve(v.size());
293
294         // Remove superfluous ONEs
295         exvector::const_iterator cit = v.begin(), citend = v.end();
296         while (cit != citend) {
297                 if (!is_a<clifford>(*cit) || !is_a<diracone>(cit->op(0)))
298                         s.push_back(*cit);
299                 cit++;
300         }
301
302         bool something_changed = false;
303         int sign = 1;
304
305         // Anticommute gamma5/L/R's to the front
306         if (s.size() >= 2) {
307                 exvector::iterator first = s.begin(), next_to_last = s.end() - 2;
308                 while (true) {
309                         exvector::iterator it = next_to_last;
310                         while (true) {
311                                 exvector::iterator it2 = it + 1;
312                                 if (is_a<clifford>(*it) && is_a<clifford>(*it2)) {
313                                         ex e1 = it->op(0), e2 = it2->op(0);
314
315                                         if (is_a<diracgamma5>(e2)) {
316
317                                                 if (is_a<diracgammaL>(e1) || is_a<diracgammaR>(e1)) {
318
319                                                         // gammaL/R gamma5 -> gamma5 gammaL/R
320                                                         it->swap(*it2);
321                                                         something_changed = true;
322
323                                                 } else if (!is_a<diracgamma5>(e1)) {
324
325                                                         // gamma5 gamma5 -> gamma5 gamma5 (do nothing)
326                                                         // x gamma5 -> -gamma5 x
327                                                         it->swap(*it2);
328                                                         sign = -sign;
329                                                         something_changed = true;
330                                                 }
331
332                                         } else if (is_a<diracgammaL>(e2)) {
333
334                                                 if (is_a<diracgammaR>(e1)) {
335
336                                                         // gammaR gammaL -> 0
337                                                         return _ex0;
338
339                                                 } else if (!is_a<diracgammaL>(e1) && !is_a<diracgamma5>(e1)) {
340
341                                                         // gammaL gammaL -> gammaL gammaL (do nothing)
342                                                         // gamma5 gammaL -> gamma5 gammaL (do nothing)
343                                                         // x gammaL -> gammaR x
344                                                         it->swap(*it2);
345                                                         *it = clifford(diracgammaR(), ex_to<clifford>(*it).get_representation_label());
346                                                         something_changed = true;
347                                                 }
348
349                                         } else if (is_a<diracgammaR>(e2)) {
350
351                                                 if (is_a<diracgammaL>(e1)) {
352
353                                                         // gammaL gammaR -> 0
354                                                         return _ex0;
355
356                                                 } else if (!is_a<diracgammaR>(e1) && !is_a<diracgamma5>(e1)) {
357
358                                                         // gammaR gammaR -> gammaR gammaR (do nothing)
359                                                         // gamma5 gammaR -> gamma5 gammaR (do nothing)
360                                                         // x gammaR -> gammaL x
361                                                         it->swap(*it2);
362                                                         *it = clifford(diracgammaL(), ex_to<clifford>(*it).get_representation_label());
363                                                         something_changed = true;
364                                                 }
365                                         }
366                                 }
367                                 if (it == first)
368                                         break;
369                                 --it;
370                         }
371                         if (next_to_last == first)
372                                 break;
373                         --next_to_last;
374                 }
375         }
376
377         // Remove equal adjacent gammas
378         if (s.size() >= 2) {
379                 exvector::iterator it, itend = s.end() - 1;
380                 for (it = s.begin(); it != itend; ++it) {
381                         ex & a = it[0];
382                         ex & b = it[1];
383                         if (!is_a<clifford>(a) || !is_a<clifford>(b))
384                                 continue;
385
386                         const ex & ag = a.op(0);
387                         const ex & bg = b.op(0);
388                         bool a_is_diracgamma = is_a<diracgamma>(ag);
389                         bool b_is_diracgamma = is_a<diracgamma>(bg);
390
391                         if (a_is_diracgamma && b_is_diracgamma) {
392
393                                 const ex & ia = a.op(1);
394                                 const ex & ib = b.op(1);
395                                 if (ia.is_equal(ib)) { // gamma~alpha gamma~alpha -> g~alpha~alpha
396                                         a = lorentz_g(ia, ib);
397                                         b = dirac_ONE(representation_label);
398                                         something_changed = true;
399                                 }
400
401                         } else if ((is_a<diracgamma5>(ag) && is_a<diracgamma5>(bg))) {
402
403                                 // Remove squares of gamma5
404                                 a = dirac_ONE(representation_label);
405                                 b = dirac_ONE(representation_label);
406                                 something_changed = true;
407
408                         } else if ((is_a<diracgammaL>(ag) && is_a<diracgammaL>(bg))
409                                 || (is_a<diracgammaR>(ag) && is_a<diracgammaR>(bg))) {
410
411                                 // Remove squares of gammaL/R
412                                 b = dirac_ONE(representation_label);
413                                 something_changed = true;
414
415                         } else if (is_a<diracgammaL>(ag) && is_a<diracgammaR>(bg)) {
416
417                                 // gammaL and gammaR are orthogonal
418                                 return _ex0;
419
420                         } else if (is_a<diracgamma5>(ag) && is_a<diracgammaL>(bg)) {
421
422                                 // gamma5 gammaL -> -gammaL
423                                 a = dirac_ONE(representation_label);
424                                 sign = -sign;
425                                 something_changed = true;
426
427                         } else if (is_a<diracgamma5>(ag) && is_a<diracgammaR>(bg)) {
428
429                                 // gamma5 gammaR -> gammaR
430                                 a = dirac_ONE(representation_label);
431                                 something_changed = true;
432
433                         } else if (!a_is_diracgamma && !b_is_diracgamma && ag.is_equal(bg)) {
434
435                                 // a\ a\ -> a^2
436                                 varidx ix((new symbol)->setflag(status_flags::dynallocated), ex_to<idx>(a.op(1)).get_dim());
437                                 a = indexed(ag, ix) * indexed(ag, ix.toggle_variance());
438                                 b = dirac_ONE(representation_label);
439                                 something_changed = true;
440                         }
441                 }
442         }
443
444         if (s.empty())
445                 return clifford(diracone(), representation_label) * sign;
446         if (something_changed)
447                 return nonsimplified_ncmul(s) * sign;
448         else
449                 return simplified_ncmul(s) * sign;
450 }
451
452 ex clifford::thisexprseq(const exvector & v) const
453 {
454         return clifford(representation_label, v);
455 }
456
457 ex clifford::thisexprseq(exvector * vp) const
458 {
459         return clifford(representation_label, vp);
460 }
461
462 //////////
463 // global functions
464 //////////
465
466 ex dirac_ONE(unsigned char rl)
467 {
468         return clifford(diracone(), rl);
469 }
470
471 ex dirac_gamma(const ex & mu, unsigned char rl)
472 {
473         if (!is_a<varidx>(mu))
474                 throw(std::invalid_argument("index of Dirac gamma must be of type varidx"));
475
476         return clifford(diracgamma(), mu, rl);
477 }
478
479 ex dirac_gamma5(unsigned char rl)
480 {
481         return clifford(diracgamma5(), rl);
482 }
483
484 ex dirac_gammaL(unsigned char rl)
485 {
486         return clifford(diracgammaL(), rl);
487 }
488
489 ex dirac_gammaR(unsigned char rl)
490 {
491         return clifford(diracgammaR(), rl);
492 }
493
494 ex dirac_gamma6(unsigned char rl)
495 {
496         return clifford(diracone(), rl) + clifford(diracgamma5(), rl);
497 }
498
499 ex dirac_gamma7(unsigned char rl)
500 {
501         return clifford(diracone(), rl) - clifford(diracgamma5(), rl);
502 }
503
504 ex dirac_slash(const ex & e, const ex & dim, unsigned char rl)
505 {
506         // Slashed vectors are actually stored as a clifford object with the
507         // vector as its base expression and a (dummy) index that just serves
508         // for storing the space dimensionality
509         return clifford(e, varidx(0, dim), rl);
510 }
511
512 /** Check whether a given tinfo key (as returned by return_type_tinfo()
513  *  is that of a clifford object with the specified representation label. */
514 static bool is_clifford_tinfo(unsigned ti, unsigned char rl)
515 {
516         return ti == (TINFO_clifford + rl);
517 }
518
519 /** Check whether a given tinfo key (as returned by return_type_tinfo()
520  *  is that of a clifford object (with an arbitrary representation label). */
521 static bool is_clifford_tinfo(unsigned ti)
522 {
523         return (ti & ~0xff) == TINFO_clifford;
524 }
525
526 /** Take trace of a string of an even number of Dirac gammas given a vector
527  *  of indices. */
528 static ex trace_string(exvector::const_iterator ix, unsigned num)
529 {
530         // Tr gamma.mu gamma.nu = 4 g.mu.nu
531         if (num == 2)
532                 return lorentz_g(ix[0], ix[1]);
533
534         // Tr gamma.mu gamma.nu gamma.rho gamma.sig = 4 (g.mu.nu g.rho.sig + g.nu.rho g.mu.sig - g.mu.rho g.nu.sig
535         else if (num == 4)
536                 return lorentz_g(ix[0], ix[1]) * lorentz_g(ix[2], ix[3])
537                      + lorentz_g(ix[1], ix[2]) * lorentz_g(ix[0], ix[3])
538                      - lorentz_g(ix[0], ix[2]) * lorentz_g(ix[1], ix[3]);
539
540         // Traces of 6 or more gammas are computed recursively:
541         // Tr gamma.mu1 gamma.mu2 ... gamma.mun =
542         //   + g.mu1.mu2 * Tr gamma.mu3 ... gamma.mun
543         //   - g.mu1.mu3 * Tr gamma.mu2 gamma.mu4 ... gamma.mun
544         //   + g.mu1.mu4 * Tr gamma.mu3 gamma.mu3 gamma.mu5 ... gamma.mun
545         //   - ...
546         //   + g.mu1.mun * Tr gamma.mu2 ... gamma.mu(n-1)
547         exvector v(num - 2);
548         int sign = 1;
549         ex result;
550         for (unsigned i=1; i<num; i++) {
551                 for (unsigned n=1, j=0; n<num; n++) {
552                         if (n == i)
553                                 continue;
554                         v[j++] = ix[n];
555                 }
556                 result += sign * lorentz_g(ix[0], ix[i]) * trace_string(v.begin(), num-2);
557                 sign = -sign;
558         }
559         return result;
560 }
561
562 ex dirac_trace(const ex & e, unsigned char rl, const ex & trONE)
563 {
564         if (is_a<clifford>(e)) {
565
566                 if (!ex_to<clifford>(e).get_representation_label() == rl)
567                         return _ex0;
568                 const ex & g = e.op(0);
569                 if (is_a<diracone>(g))
570                         return trONE;
571                 else if (is_a<diracgammaL>(g) || is_a<diracgammaR>(g))
572                         return trONE/2;
573                 else
574                         return _ex0;
575
576         } else if (is_ex_exactly_of_type(e, mul)) {
577
578                 // Trace of product: pull out non-clifford factors
579                 ex prod = _ex1;
580                 for (unsigned i=0; i<e.nops(); i++) {
581                         const ex &o = e.op(i);
582                         if (is_clifford_tinfo(o.return_type_tinfo(), rl))
583                                 prod *= dirac_trace(o, rl, trONE);
584                         else
585                                 prod *= o;
586                 }
587                 return prod;
588
589         } else if (is_ex_exactly_of_type(e, ncmul)) {
590
591                 if (!is_clifford_tinfo(e.return_type_tinfo(), rl))
592                         return _ex0;
593
594                 // Substitute gammaL/R and expand product, if necessary
595                 ex e_expanded = e.subs(lst(
596                         dirac_gammaL(rl) == (dirac_ONE(rl)-dirac_gamma5(rl))/2,
597                         dirac_gammaR(rl) == (dirac_ONE(rl)+dirac_gamma5(rl))/2
598                 )).expand();
599                 if (!is_a<ncmul>(e_expanded))
600                         return dirac_trace(e_expanded, rl, trONE);
601
602                 // gamma5 gets moved to the front so this check is enough
603                 bool has_gamma5 = is_a<diracgamma5>(e.op(0).op(0));
604                 unsigned num = e.nops();
605
606                 if (has_gamma5) {
607
608                         // Trace of gamma5 * odd number of gammas and trace of
609                         // gamma5 * gamma.mu * gamma.nu are zero
610                         if ((num & 1) == 0 || num == 3)
611                                 return _ex0;
612
613                         // Tr gamma5 gamma.mu gamma.nu gamma.rho gamma.sigma = 4I * epsilon(mu, nu, rho, sigma)
614                         // (the epsilon is always 4-dimensional)
615                         if (num == 5) {
616                                 ex b1, i1, b2, i2, b3, i3, b4, i4;
617                                 base_and_index(e.op(1), b1, i1);
618                                 base_and_index(e.op(2), b2, i2);
619                                 base_and_index(e.op(3), b3, i3);
620                                 base_and_index(e.op(4), b4, i4);
621                                 return trONE * I * (lorentz_eps(ex_to<idx>(i1).replace_dim(_ex4), ex_to<idx>(i2).replace_dim(_ex4), ex_to<idx>(i3).replace_dim(_ex4), ex_to<idx>(i4).replace_dim(_ex4)) * b1 * b2 * b3 * b4).simplify_indexed();
622                         }
623
624                         // Tr gamma5 S_2k =
625                         //   I/4! * epsilon0123.mu1.mu2.mu3.mu4 * Tr gamma.mu1 gamma.mu2 gamma.mu3 gamma.mu4 S_2k
626                         // (the epsilon is always 4-dimensional)
627                         exvector ix(num-1), bv(num-1);
628                         for (unsigned i=1; i<num; i++)
629                                 base_and_index(e.op(i), bv[i-1], ix[i-1]);
630                         num--;
631                         int *iv = new int[num];
632                         ex result;
633                         for (unsigned i=0; i<num-3; i++) {
634                                 ex idx1 = ix[i];
635                                 for (unsigned j=i+1; j<num-2; j++) {
636                                         ex idx2 = ix[j];
637                                         for (unsigned k=j+1; k<num-1; k++) {
638                                                 ex idx3 = ix[k];
639                                                 for (unsigned l=k+1; l<num; l++) {
640                                                         ex idx4 = ix[l];
641                                                         iv[0] = i; iv[1] = j; iv[2] = k; iv[3] = l;
642                                                         exvector v;
643                                                         v.reserve(num - 4);
644                                                         for (unsigned n=0, t=4; n<num; n++) {
645                                                                 if (n == i || n == j || n == k || n == l)
646                                                                         continue;
647                                                                 iv[t++] = n;
648                                                                 v.push_back(ix[n]);
649                                                         }
650                                                         int sign = permutation_sign(iv, iv + num);
651                                                         result += sign * lorentz_eps(ex_to<idx>(idx1).replace_dim(_ex4), ex_to<idx>(idx2).replace_dim(_ex4), ex_to<idx>(idx3).replace_dim(_ex4), ex_to<idx>(idx4).replace_dim(_ex4))
652                                                                 * trace_string(v.begin(), num - 4);
653                                                 }
654                                         }
655                                 }
656                         }
657                         delete[] iv;
658                         return trONE * I * result * mul(bv);
659
660                 } else { // no gamma5
661
662                         // Trace of odd number of gammas is zero
663                         if ((num & 1) == 1)
664                                 return _ex0;
665
666                         // Tr gamma.mu gamma.nu = 4 g.mu.nu
667                         if (num == 2) {
668                                 ex b1, i1, b2, i2;
669                                 base_and_index(e.op(0), b1, i1);
670                                 base_and_index(e.op(1), b2, i2);
671                                 return trONE * (lorentz_g(i1, i2) * b1 * b2).simplify_indexed();
672                         }
673
674                         exvector iv(num), bv(num);
675                         for (unsigned i=0; i<num; i++)
676                                 base_and_index(e.op(i), bv[i], iv[i]);
677
678                         return trONE * (trace_string(iv.begin(), num) * mul(bv)).simplify_indexed();
679                 }
680
681         } else if (e.nops() > 0) {
682
683                 // Trace maps to all other container classes (this includes sums)
684                 pointer_to_map_function_2args<unsigned char, const ex &> fcn(dirac_trace, rl, trONE);
685                 return e.map(fcn);
686
687         } else
688                 return _ex0;
689 }
690
691 ex canonicalize_clifford(const ex & e)
692 {
693         // Scan for any ncmul objects
694         lst srl;
695         ex aux = e.to_rational(srl);
696         for (unsigned i=0; i<srl.nops(); i++) {
697
698                 ex lhs = srl.op(i).lhs();
699                 ex rhs = srl.op(i).rhs();
700
701                 if (is_ex_exactly_of_type(rhs, ncmul)
702                  && rhs.return_type() == return_types::noncommutative
703                  && is_clifford_tinfo(rhs.return_type_tinfo())) {
704
705                         // Expand product, if necessary
706                         ex rhs_expanded = rhs.expand();
707                         if (!is_a<ncmul>(rhs_expanded)) {
708                                 srl.let_op(i) = (lhs == canonicalize_clifford(rhs_expanded));
709                                 continue;
710
711                         } else if (!is_a<clifford>(rhs.op(0)))
712                                 continue;
713
714                         exvector v;
715                         v.reserve(rhs.nops());
716                         for (unsigned j=0; j<rhs.nops(); j++)
717                                 v.push_back(rhs.op(j));
718
719                         // Stupid recursive bubble sort because we only want to swap adjacent gammas
720                         exvector::iterator it = v.begin(), next_to_last = v.end() - 1;
721                         if (is_a<diracgamma5>(it->op(0)))
722                                 ++it;
723                         while (it != next_to_last) {
724                                 if (it[0].compare(it[1]) > 0) {
725                                         ex save0 = it[0], save1 = it[1];
726                                         ex b1, i1, b2, i2;
727                                         base_and_index(it[0], b1, i1);
728                                         base_and_index(it[1], b2, i2);
729                                         it[0] = (lorentz_g(i1, i2) * b1 * b2).simplify_indexed();
730                                         it[1] = _ex2;
731                                         ex sum = ncmul(v);
732                                         it[0] = save1;
733                                         it[1] = save0;
734                                         sum -= ncmul(v, true);
735                                         srl.let_op(i) = (lhs == canonicalize_clifford(sum));
736                                         goto next_sym;
737                                 }
738                                 ++it;
739                         }
740 next_sym:       ;
741                 }
742         }
743         return aux.subs(srl).simplify_indexed();
744 }
745
746 } // namespace GiNaC