]> www.ginac.de Git - ginac.git/blob - check/exam_clifford.cpp
19b4e822c34432536932dd4ace1344bdb1b7ae62
[ginac.git] / check / exam_clifford.cpp
1 /** @file exam_clifford.cpp
2  *
3  *  Here we test GiNaC's Clifford algebra objects. */
4
5 /*
6  *  GiNaC Copyright (C) 1999-2001 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 "exams.h"
24
25 static unsigned check_equal(const ex &e1, const ex &e2)
26 {
27         ex e = e1 - e2;
28         if (!e.is_zero()) {
29                 clog << e1 << "-" << e2 << " erroneously returned "
30                      << e << " instead of 0" << endl;
31                 return 1;
32         }
33         return 0;
34 }
35
36 static unsigned check_equal_simplify(const ex &e1, const ex &e2)
37 {
38         ex e = simplify_indexed(e1) - e2;
39         if (!e.is_zero()) {
40                 clog << "simplify_indexed(" << e1 << ")-" << e2 << " erroneously returned "
41                      << e << " instead of 0" << endl;
42                 return 1;
43         }
44         return 0;
45 }
46
47 static unsigned clifford_check1(void)
48 {
49         // checks general identities and contractions
50
51         unsigned result = 0;
52
53         symbol dim("D");
54         varidx mu(symbol("mu"), dim), nu(symbol("nu"), dim);
55         ex e;
56
57         e = dirac_ONE() * dirac_ONE();
58         result += check_equal(e, dirac_ONE());
59
60         e = dirac_ONE() * dirac_gamma(mu) * dirac_ONE();
61         result += check_equal(e, dirac_gamma(mu));
62
63         e = dirac_gamma(varidx(2, dim)) * dirac_gamma(varidx(1, dim)) *
64             dirac_gamma(varidx(1, dim)) * dirac_gamma(varidx(2, dim));
65         result += check_equal(e, dirac_ONE());
66
67         e = dirac_gamma(mu) * dirac_gamma(nu) *
68             dirac_gamma(nu.toggle_variance()) * dirac_gamma(mu.toggle_variance());
69         result += check_equal_simplify(e, pow(dim, 2) * dirac_ONE());
70
71         e = dirac_gamma(mu) * dirac_gamma(nu) *
72             dirac_gamma(mu.toggle_variance()) * dirac_gamma(nu.toggle_variance());
73         result += check_equal_simplify(e, 2*dim*dirac_ONE()-pow(dim, 2)*dirac_ONE());
74
75         return result;
76 }
77
78 static unsigned clifford_check2(void)
79 {
80         // checks identities relating to gamma5
81
82         unsigned result = 0;
83
84         symbol dim("D");
85         varidx mu(symbol("mu"), dim), nu(symbol("nu"), dim);
86         ex e;
87
88         e = dirac_gamma(mu) * dirac_gamma5() + dirac_gamma5() * dirac_gamma(mu);
89         result += check_equal(e, 0);
90
91         e = dirac_gamma5() * dirac_gamma(mu) * dirac_gamma5() + dirac_gamma(mu);
92         result += check_equal(e, 0);
93
94         return result;
95 }
96
97 static unsigned clifford_check3(void)
98 {
99         // checks traces
100
101         unsigned result = 0;
102
103         symbol dim("D"), m("m"), q("q"), l("l"), ldotq("ldotq");
104         varidx mu(symbol("mu"), dim), nu(symbol("nu"), dim), rho(symbol("rho"), dim),
105                sig(symbol("sig"), dim), kap(symbol("kap"), dim), lam(symbol("lam"), 4);
106         scalar_products sp;
107         ex e;
108
109         sp.add(q, q, pow(q, 2));
110         sp.add(l, l, pow(l, 2));
111         sp.add(l, q, ldotq);
112
113         e = pow(m, 2) * indexed(q, mu) * indexed(q, nu)
114           * dirac_gamma(mu.toggle_variance()) * dirac_gamma(nu.toggle_variance());
115         e = dirac_trace(e).simplify_indexed(sp);
116         result += check_equal(e, 4*pow(m, 2)*pow(q, 2));
117
118         // cyclicity
119         e = dirac_gamma(mu) * dirac_gamma(nu) * dirac_gamma(rho) * dirac_gamma(sig)
120           - dirac_gamma(nu) * dirac_gamma(rho) * dirac_gamma(sig) * dirac_gamma(mu);
121         e = dirac_trace(e);
122         result += check_equal(e.expand(), 0);
123
124         e = dirac_gamma(mu) * dirac_gamma(nu) * dirac_gamma(rho) * dirac_gamma(sig) * dirac_gamma(kap) * dirac_gamma(lam)
125           - dirac_gamma(nu) * dirac_gamma(rho) * dirac_gamma(sig) * dirac_gamma(kap) * dirac_gamma(lam) * dirac_gamma(mu);
126         e = dirac_trace(e);
127         result += check_equal(e.expand(), 0);
128
129         // one-loop vacuum polarization in QED
130         e = dirac_gamma(mu) *
131             (dirac_gamma(nu) * indexed(l, nu.toggle_variance()) + dirac_gamma(nu) * indexed(q, nu.toggle_variance()) + m * dirac_ONE()) *
132             dirac_gamma(mu.toggle_variance()) *
133             (dirac_gamma(rho) * indexed(l, rho.toggle_variance()) + m * dirac_ONE());
134         e = dirac_trace(e.expand()).simplify_indexed(sp);
135         result += check_equal(e, 4*((2-dim)*l*l + (2-dim)*ldotq + dim*m*m).expand());
136
137     e = dirac_gamma(mu) * indexed(q, mu.toggle_variance()) *
138             (dirac_gamma(nu) * indexed(l, nu.toggle_variance()) + dirac_gamma(nu) * indexed(q, nu.toggle_variance()) + m * dirac_ONE()) *
139             dirac_gamma(sig) * indexed(q, sig.toggle_variance()) *
140             (dirac_gamma(rho) * indexed(l, rho.toggle_variance()) + m * dirac_ONE());
141         e = dirac_trace(e.expand()).simplify_indexed(sp);
142         result += check_equal(e, 4*(2*ldotq*ldotq + q*q*ldotq - q*q*l*l + q*q*m*m).expand());
143
144         return result;
145 }
146
147 unsigned exam_clifford(void)
148 {
149         unsigned result = 0;
150         
151         cout << "examining clifford objects" << flush;
152         clog << "----------clifford objects:" << endl;
153
154         result += clifford_check1();  cout << '.' << flush;
155         result += clifford_check2();  cout << '.' << flush;
156         result += clifford_check3();  cout << '.' << flush;
157         
158         if (!result) {
159                 cout << " passed " << endl;
160                 clog << "(no output)" << endl;
161         } else {
162                 cout << " failed " << endl;
163         }
164         
165         return result;
166 }