X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Fclifford.cpp;h=0b3801e154efc15b6cdea5a0cecd3c648d1fe53a;hp=0a10d4525854f5f575297234aefa33ba0f3fe2db;hb=b301f03a61bc9f72b27940ca7fe1f8d0b343a4e2;hpb=0f617ea4ea1dc6a33cae5e2ce518b26d8055c177 diff --git a/ginac/clifford.cpp b/ginac/clifford.cpp index 0a10d452..0b3801e1 100644 --- a/ginac/clifford.cpp +++ b/ginac/clifford.cpp @@ -3,7 +3,7 @@ * Implementation of GiNaC's clifford algebra (Dirac gamma) objects. */ /* - * GiNaC Copyright (C) 1999-2002 Johannes Gutenberg University Mainz, Germany + * GiNaC Copyright (C) 1999-2003 Johannes Gutenberg University Mainz, Germany * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -32,6 +32,7 @@ #include "symmetry.h" #include "lst.h" #include "relational.h" +#include "operators.h" #include "mul.h" #include "print.h" #include "archive.h" @@ -47,7 +48,7 @@ GINAC_IMPLEMENT_REGISTERED_CLASS(diracgammaL, tensor) GINAC_IMPLEMENT_REGISTERED_CLASS(diracgammaR, tensor) ////////// -// default ctor, dtor, copy ctor, assignment operator and helpers +// default constructors ////////// clifford::clifford() : representation_label(0) @@ -55,18 +56,11 @@ clifford::clifford() : representation_label(0) tinfo_key = TINFO_clifford; } -void clifford::copy(const clifford & other) -{ - inherited::copy(other); - representation_label = other.representation_label; -} - -DEFAULT_DESTROY(clifford) -DEFAULT_CTORS(diracone) -DEFAULT_CTORS(diracgamma) -DEFAULT_CTORS(diracgamma5) -DEFAULT_CTORS(diracgammaL) -DEFAULT_CTORS(diracgammaR) +DEFAULT_CTOR(diracone) +DEFAULT_CTOR(diracgamma) +DEFAULT_CTOR(diracgamma5) +DEFAULT_CTOR(diracgammaL) +DEFAULT_CTOR(diracgammaR) ////////// // other constructors @@ -103,7 +97,7 @@ clifford::clifford(unsigned char rl, exvector * vp) : inherited(sy_none(), vp), // archiving ////////// -clifford::clifford(const archive_node &n, const lst &sym_lst) : inherited(n, sym_lst) +clifford::clifford(const archive_node &n, lst &sym_lst) : inherited(n, sym_lst) { unsigned rl; n.find_unsigned("label", rl); @@ -209,14 +203,16 @@ bool diracgamma::contract_with(exvector::iterator self, exvector::iterator other GINAC_ASSERT(is_a(self->op(0))); unsigned char rl = ex_to(*self).get_representation_label(); + ex dim = ex_to(self->op(1)).get_dim(); + if (other->nops() > 1) + dim = minimal_dim(dim, ex_to(other->op(1)).get_dim()); + if (is_a(*other)) { // Contraction only makes sense if the represenation labels are equal if (ex_to(*other).get_representation_label() != rl) return false; - ex dim = ex_to(self->op(1)).get_dim(); - // gamma~mu gamma.mu = dim ONE if (other - self == 1) { *self = dim; @@ -278,6 +274,13 @@ bool diracgamma::contract_with(exvector::iterator self, exvector::iterator other *other = _ex1; return true; } + + } else if (is_a(other->op(0)) && other->nops() == 2) { + + // x.mu gamma~mu -> x-slash + *self = dirac_slash(other->op(0), dim, rl); + *other = _ex1; + return true; } return false; @@ -286,7 +289,7 @@ bool diracgamma::contract_with(exvector::iterator self, exvector::iterator other /** Perform automatic simplification on noncommutative product of clifford * objects. This removes superfluous ONEs, permutes gamma5/L/R's to the front * and removes squares of gamma objects. */ -ex clifford::simplify_ncmul(const exvector & v) const +ex clifford::eval_ncmul(const exvector & v) const { exvector s; s.reserve(v.size()); @@ -433,7 +436,7 @@ ex clifford::simplify_ncmul(const exvector & v) const } else if (!a_is_diracgamma && !b_is_diracgamma && ag.is_equal(bg)) { // a\ a\ -> a^2 - varidx ix((new symbol)->setflag(status_flags::dynallocated), ex_to(a.op(1)).get_dim()); + varidx ix((new symbol)->setflag(status_flags::dynallocated), ex_to(a.op(1)).minimal_dim(ex_to(b.op(1)))); a = indexed(ag, ix) * indexed(ag, ix.toggle_variance()); b = dirac_ONE(representation_label); something_changed = true; @@ -444,17 +447,17 @@ ex clifford::simplify_ncmul(const exvector & v) const if (s.empty()) return clifford(diracone(), representation_label) * sign; if (something_changed) - return nonsimplified_ncmul(s) * sign; + return reeval_ncmul(s) * sign; else - return simplified_ncmul(s) * sign; + return hold_ncmul(s) * sign; } -ex clifford::thisexprseq(const exvector & v) const +ex clifford::thiscontainer(const exvector & v) const { return clifford(representation_label, v); } -ex clifford::thisexprseq(exvector * vp) const +ex clifford::thiscontainer(exvector * vp) const { return clifford(representation_label, vp); } @@ -491,16 +494,6 @@ ex dirac_gammaR(unsigned char rl) return clifford(diracgammaR(), rl); } -ex dirac_gamma6(unsigned char rl) -{ - return clifford(diracone(), rl) + clifford(diracgamma5(), rl); -} - -ex dirac_gamma7(unsigned char rl) -{ - return clifford(diracone(), rl) - clifford(diracgamma5(), rl); -} - ex dirac_slash(const ex & e, const ex & dim, unsigned char rl) { // Slashed vectors are actually stored as a clifford object with the @@ -525,13 +518,13 @@ static bool is_clifford_tinfo(unsigned ti) /** Take trace of a string of an even number of Dirac gammas given a vector * of indices. */ -static ex trace_string(exvector::const_iterator ix, unsigned num) +static ex trace_string(exvector::const_iterator ix, size_t num) { // Tr gamma.mu gamma.nu = 4 g.mu.nu if (num == 2) return lorentz_g(ix[0], ix[1]); - // 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 + // 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 ) else if (num == 4) return lorentz_g(ix[0], ix[1]) * lorentz_g(ix[2], ix[3]) + lorentz_g(ix[1], ix[2]) * lorentz_g(ix[0], ix[3]) @@ -547,8 +540,8 @@ static ex trace_string(exvector::const_iterator ix, unsigned num) exvector v(num - 2); int sign = 1; ex result; - for (unsigned i=1; i(e)) { // Trace of product: pull out non-clifford factors ex prod = _ex1; - for (unsigned i=0; i(e)) { if (!is_clifford_tinfo(e.return_type_tinfo(), rl)) return _ex0; @@ -595,13 +588,13 @@ ex dirac_trace(const ex & e, unsigned char rl, const ex & trONE) ex e_expanded = e.subs(lst( dirac_gammaL(rl) == (dirac_ONE(rl)-dirac_gamma5(rl))/2, dirac_gammaR(rl) == (dirac_ONE(rl)+dirac_gamma5(rl))/2 - )).expand(); + ), subs_options::no_pattern).expand(); if (!is_a(e_expanded)) return dirac_trace(e_expanded, rl, trONE); // gamma5 gets moved to the front so this check is enough bool has_gamma5 = is_a(e.op(0).op(0)); - unsigned num = e.nops(); + size_t num = e.nops(); if (has_gamma5) { @@ -625,23 +618,23 @@ ex dirac_trace(const ex & e, unsigned char rl, const ex & trONE) // I/4! * epsilon0123.mu1.mu2.mu3.mu4 * Tr gamma.mu1 gamma.mu2 gamma.mu3 gamma.mu4 S_2k // (the epsilon is always 4-dimensional) exvector ix(num-1), bv(num-1); - for (unsigned i=1; i(rhs) && rhs.return_type() == return_types::noncommutative && is_clifford_tinfo(rhs.return_type_tinfo())) { // Expand product, if necessary ex rhs_expanded = rhs.expand(); if (!is_a(rhs_expanded)) { - srl.let_op(i) = (lhs == canonicalize_clifford(rhs_expanded)); + srl[i] = (lhs == canonicalize_clifford(rhs_expanded)); continue; } else if (!is_a(rhs.op(0))) @@ -713,12 +707,12 @@ ex canonicalize_clifford(const ex & e) exvector v; v.reserve(rhs.nops()); - for (unsigned j=0; j(it->op(0))) + if (is_a(it->op(0)) || is_a(it->op(0)) || is_a(it->op(0))) ++it; while (it != next_to_last) { if (it[0].compare(it[1]) > 0) { @@ -732,7 +726,7 @@ ex canonicalize_clifford(const ex & e) it[0] = save1; it[1] = save0; sum -= ncmul(v, true); - srl.let_op(i) = (lhs == canonicalize_clifford(sum)); + srl[i] = (lhs == canonicalize_clifford(sum)); goto next_sym; } ++it; @@ -740,7 +734,7 @@ ex canonicalize_clifford(const ex & e) next_sym: ; } } - return aux.subs(srl).simplify_indexed(); + return aux.subs(srl, subs_options::no_pattern).simplify_indexed(); } } // namespace GiNaC