X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Fclifford.cpp;h=ff834bce71f4ab54ee9f689ce2cb9fb1810ffdeb;hp=b12e385ce4f03f2ca6f9bc7d6fd09342f5f6ef28;hb=488cad4c124885230154720041bd51fa4d983a8b;hpb=dbd9c306a74f1cb258c0d15a346b973b39deaad2 diff --git a/ginac/clifford.cpp b/ginac/clifford.cpp index b12e385c..ff834bce 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" @@ -39,15 +40,32 @@ namespace GiNaC { -GINAC_IMPLEMENT_REGISTERED_CLASS(clifford, indexed) -GINAC_IMPLEMENT_REGISTERED_CLASS(diracone, tensor) -GINAC_IMPLEMENT_REGISTERED_CLASS(diracgamma, tensor) -GINAC_IMPLEMENT_REGISTERED_CLASS(diracgamma5, tensor) -GINAC_IMPLEMENT_REGISTERED_CLASS(diracgammaL, tensor) -GINAC_IMPLEMENT_REGISTERED_CLASS(diracgammaR, tensor) +GINAC_IMPLEMENT_REGISTERED_CLASS_OPT(clifford, indexed, + print_func(&clifford::do_print_dflt). + print_func(&clifford::do_print_latex)) + +GINAC_IMPLEMENT_REGISTERED_CLASS_OPT(diracone, tensor, + print_func(&diracone::do_print). + print_func(&diracone::do_print_latex)) + +GINAC_IMPLEMENT_REGISTERED_CLASS_OPT(diracgamma, tensor, + print_func(&diracgamma::do_print). + print_func(&diracgamma::do_print_latex)) + +GINAC_IMPLEMENT_REGISTERED_CLASS_OPT(diracgamma5, tensor, + print_func(&diracgamma5::do_print). + print_func(&diracgamma5::do_print_latex)) + +GINAC_IMPLEMENT_REGISTERED_CLASS_OPT(diracgammaL, tensor, + print_func(&diracgammaL::do_print). + print_func(&diracgammaL::do_print_latex)) + +GINAC_IMPLEMENT_REGISTERED_CLASS_OPT(diracgammaR, tensor, + print_func(&diracgammaR::do_print). + print_func(&diracgammaR::do_print_latex)) ////////// -// default ctor, dtor, copy ctor, assignment operator and helpers +// default constructors ////////// clifford::clifford() : representation_label(0) @@ -55,18 +73,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 +114,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); @@ -148,26 +159,32 @@ bool clifford::match_same_type(const basic & other) const return representation_label == o.representation_label; } -void clifford::print(const print_context & c, unsigned level) const +static bool is_dirac_slash(const ex & seq0) { - if (!is_a(seq[0]) && !is_a(seq[0]) && - !is_a(seq[0]) && !is_a(seq[0]) && - !is_a(seq[0])) { - - // dirac_slash() object is printed differently - if (is_a(c)) - inherited::print(c, level); - else if (is_a(c)) { - c.s << "{"; - seq[0].print(c, level); - c.s << "\\hspace{-1.0ex}/}"; - } else { - seq[0].print(c, level); - c.s << "\\"; - } + return !is_a(seq0) && !is_a(seq0) && + !is_a(seq0) && !is_a(seq0) && + !is_a(seq0); +} +void clifford::do_print_dflt(const print_dflt & c, unsigned level) const +{ + // dirac_slash() object is printed differently + if (is_dirac_slash(seq[0])) { + seq[0].print(c, level); + c.s << "\\"; } else - inherited::print(c, level); + this->print_dispatch(c, level); +} + +void clifford::do_print_latex(const print_latex & c, unsigned level) const +{ + // dirac_slash() object is printed differently + if (is_dirac_slash(seq[0])) { + c.s << "{"; + seq[0].print(c, level); + c.s << "\\hspace{-1.0ex}/}"; + } else + this->print_dispatch(c, level); } DEFAULT_COMPARE(diracone) @@ -208,10 +225,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 +312,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 +470,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 +517,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 +541,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 +563,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 +611,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 +641,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 +730,7 @@ ex canonicalize_clifford(const ex & e) exvector v; v.reserve(rhs.nops()); - for (unsigned j=0; j