X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Fclifford.cpp;h=0b3801e154efc15b6cdea5a0cecd3c648d1fe53a;hp=b12e385ce4f03f2ca6f9bc7d6fd09342f5f6ef28;hb=613ced9c74ce14644a926868bb02dec27af2321c;hpb=dbd9c306a74f1cb258c0d15a346b973b39deaad2 diff --git a/ginac/clifford.cpp b/ginac/clifford.cpp index b12e385c..0b3801e1 100644 --- a/ginac/clifford.cpp +++ b/ginac/clifford.cpp @@ -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); @@ -208,10 +202,11 @@ bool diracgamma::contract_with(exvector::iterator self, exvector::iterator other GINAC_ASSERT(is_a(*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 (other->nops() > 1) - dim = minimal_dim(dim, ex_to(self->op(1)).get_dim()); if (is_a(*other)) { // Contraction only makes sense if the represenation labels are equal @@ -294,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()); @@ -452,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); } @@ -499,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 @@ -533,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]) @@ -555,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; @@ -603,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) { @@ -633,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))) @@ -721,7 +707,7 @@ ex canonicalize_clifford(const ex & e) exvector v; v.reserve(rhs.nops()); - for (unsigned j=0; j