X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Fcolor.cpp;h=34ab4d82d7ef055a80b8b6734621ceed147c000c;hp=2693d9266d30a68c32cf851778f3e40c3b74a621;hb=073bf40a73e419a3dbcb6dfa190947ce2cc3bdce;hpb=da64e515abf7243bc4c84ca3631470931c4e6691 diff --git a/ginac/color.cpp b/ginac/color.cpp index 2693d926..34ab4d82 100644 --- a/ginac/color.cpp +++ b/ginac/color.cpp @@ -3,7 +3,7 @@ * Implementation of GiNaC's color (SU(3) Lie algebra) objects. */ /* - * GiNaC Copyright (C) 1999-2005 Johannes Gutenberg University Mainz, Germany + * GiNaC Copyright (C) 1999-2011 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 @@ -20,9 +20,6 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#include -#include - #include "color.h" #include "idx.h" #include "ncmul.h" @@ -35,6 +32,9 @@ #include "archive.h" #include "utils.h" +#include +#include + namespace GiNaC { GINAC_IMPLEMENT_REGISTERED_CLASS(color, indexed) @@ -61,7 +61,6 @@ GINAC_IMPLEMENT_REGISTERED_CLASS_OPT(su3d, tensor, color::color() : representation_label(0) { - tinfo_key = TINFO_color; } DEFAULT_CTOR(su3one) @@ -78,7 +77,6 @@ DEFAULT_CTOR(su3d) * @see color_ONE */ color::color(const ex & b, unsigned char rl) : inherited(b), representation_label(rl) { - tinfo_key = TINFO_color; } /** Construct object with one color index. This constructor is for internal @@ -86,25 +84,28 @@ color::color(const ex & b, unsigned char rl) : inherited(b), representation_labe * @see color_T */ color::color(const ex & b, const ex & i1, unsigned char rl) : inherited(b, i1), representation_label(rl) { - tinfo_key = TINFO_color; } color::color(unsigned char rl, const exvector & v, bool discardable) : inherited(not_symmetric(), v, discardable), representation_label(rl) { - tinfo_key = TINFO_color; } color::color(unsigned char rl, std::auto_ptr vp) : inherited(not_symmetric(), vp), representation_label(rl) { - tinfo_key = TINFO_color; +} + +return_type_t color::return_type_tinfo() const +{ + return make_return_type_t(representation_label); } ////////// // archiving ////////// -color::color(const archive_node &n, lst &sym_lst) : inherited(n, sym_lst) +void color::read_archive(const archive_node& n, lst& sym_lst) { + inherited::read_archive(n, sym_lst); unsigned rl; n.find_unsigned("label", rl); representation_label = rl; @@ -116,11 +117,11 @@ void color::archive(archive_node &n) const n.add_unsigned("label", representation_label); } -DEFAULT_UNARCHIVE(color) -DEFAULT_ARCHIVING(su3one) -DEFAULT_ARCHIVING(su3t) -DEFAULT_ARCHIVING(su3f) -DEFAULT_ARCHIVING(su3d) +GINAC_BIND_UNARCHIVER(color); +GINAC_BIND_UNARCHIVER(su3one); +GINAC_BIND_UNARCHIVER(su3t); +GINAC_BIND_UNARCHIVER(su3f); +GINAC_BIND_UNARCHIVER(su3d); ////////// // functions overriding virtual functions from base classes @@ -520,25 +521,18 @@ ex color_h(const ex & a, const ex & b, const ex & c) return color_d(a, b, c) + I * color_f(a, b, c); } -/** Check whether a given tinfo key (as returned by return_type_tinfo() - * is that of a color object with the specified representation label. */ -static bool is_color_tinfo(unsigned ti, unsigned char rl) -{ - return ti == (TINFO_color + rl); -} - /** Check whether a given tinfo key (as returned by return_type_tinfo() * is that of a color object (with an arbitrary representation label). */ -static bool is_color_tinfo(unsigned ti) +static bool is_color_tinfo(const return_type_t& ti) { - return (ti & ~0xff) == TINFO_color; + return *(ti.tinfo) == typeid(color); } /** Extract representation label from tinfo key (as returned by * return_type_tinfo()). */ -static unsigned char get_representation_label(unsigned ti) +static unsigned char get_representation_label(const return_type_t& ti) { - return ti & 0xff; + return (unsigned char)ti.rl; } ex color_trace(const ex & e, const std::set & rls)