X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Fsymmetry.cpp;h=6ab0944dd79882d7dd4284a800f4fdf45a9fb06c;hp=504a9fc46f875929518e571bd5711b8007b366c2;hb=6a5d85aac330ef87ebdd46ae1c3f4c1e1b7bed3f;hpb=b301f03a61bc9f72b27940ca7fe1f8d0b343a4e2 diff --git a/ginac/symmetry.cpp b/ginac/symmetry.cpp index 504a9fc4..6ab0944d 100644 --- a/ginac/symmetry.cpp +++ b/ginac/symmetry.cpp @@ -3,7 +3,7 @@ * Implementation of GiNaC's symmetry definitions. */ /* - * GiNaC Copyright (C) 1999-2003 Johannes Gutenberg University Mainz, Germany + * GiNaC Copyright (C) 1999-2007 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 @@ -17,24 +17,26 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #include #include #include +#include #include "symmetry.h" #include "lst.h" #include "numeric.h" // for factorial() #include "operators.h" -#include "print.h" #include "archive.h" #include "utils.h" namespace GiNaC { -GINAC_IMPLEMENT_REGISTERED_CLASS(symmetry, basic) +GINAC_IMPLEMENT_REGISTERED_CLASS_OPT(symmetry, basic, + print_func(&symmetry::do_print). + print_func(&symmetry::do_print_tree)) /* Some notes about the structure of a symmetry tree: @@ -54,25 +56,25 @@ GINAC_IMPLEMENT_REGISTERED_CLASS(symmetry, basic) // default constructor ////////// -symmetry::symmetry() : type(none) +symmetry::symmetry() : inherited(&symmetry::tinfo_static), type(none) { - tinfo_key = TINFO_symmetry; + setflag(status_flags::evaluated | status_flags::expanded); } ////////// // other constructors ////////// -symmetry::symmetry(unsigned i) : type(none) +symmetry::symmetry(unsigned i) : inherited(&symmetry::tinfo_static), type(none) { indices.insert(i); - tinfo_key = TINFO_symmetry; + setflag(status_flags::evaluated | status_flags::expanded); } -symmetry::symmetry(symmetry_type t, const symmetry &c1, const symmetry &c2) : type(t) +symmetry::symmetry(symmetry_type t, const symmetry &c1, const symmetry &c2) : inherited(&symmetry::tinfo_static), type(t) { add(c1); add(c2); - tinfo_key = TINFO_symmetry; + setflag(status_flags::evaluated | status_flags::expanded); } ////////// @@ -141,68 +143,123 @@ int symmetry::compare_same_type(const basic & other) const { GINAC_ASSERT(is_a(other)); - // All symmetry trees are equal. They are not supposed to appear in - // ordinary expressions anyway... + // For archiving purposes we need to have an ordering of symmetries. + const symmetry &othersymm = ex_to(other); + + // Compare type. + if (type > othersymm.type) + return 1; + if (type < othersymm.type) + return -1; + + // Compare the index set. + size_t this_size = indices.size(); + size_t that_size = othersymm.indices.size(); + if (this_size > that_size) + return 1; + if (this_size < that_size) + return -1; + typedef std::set::iterator set_it; + set_it end = indices.end(); + for (set_it i=indices.begin(),j=othersymm.indices.begin(); i!=end; ++i,++j) { + if(*i < *j) + return 1; + if(*i > *j) + return -1; + } + + // Compare the children. + if (children.size() > othersymm.children.size()) + return 1; + if (children.size() < othersymm.children.size()) + return -1; + for (size_t i=0; i(children[i]) + .compare_same_type(ex_to(othersymm.children[i])); + if (cmpval) + return cmpval; + } + return 0; } -void symmetry::print(const print_context & c, unsigned level) const +unsigned symmetry::calchash() const { - if (is_a(c)) { + unsigned v = golden_ratio_hash((p_int)tinfo()); + + if (type == none) { + v = rotate_left(v); + v ^= *(indices.begin()); + } else { + for (exvector::const_iterator i=children.begin(); i!=children.end(); ++i) + { + v = rotate_left(v); + v ^= i->gethash(); + } + } - c.s << std::string(level, ' ') << class_name() - << std::hex << ", hash=0x" << hashvalue << ", flags=0x" << flags << std::dec - << ", type="; + if (flags & status_flags::evaluated) { + setflag(status_flags::hash_calculated); + hashvalue = v; + } + + return v; +} +void symmetry::do_print(const print_context & c, unsigned level) const +{ + if (children.empty()) { + if (indices.size() > 0) + c.s << *(indices.begin()); + else + c.s << "none"; + } else { switch (type) { - case none: c.s << "none"; break; - case symmetric: c.s << "symm"; break; - case antisymmetric: c.s << "anti"; break; - case cyclic: c.s << "cycl"; break; - default: c.s << ""; break; + case none: c.s << '!'; break; + case symmetric: c.s << '+'; break; + case antisymmetric: c.s << '-'; break; + case cyclic: c.s << '@'; break; + default: c.s << '?'; break; } - - c.s << ", indices=("; - if (!indices.empty()) { - std::set::const_iterator i = indices.begin(), end = indices.end(); - --end; - while (i != end) - c.s << *i++ << ","; - c.s << *i; + c.s << '('; + size_t num = children.size(); + for (size_t i=0; i(c).delta_indent; - exvector::const_iterator i = children.begin(), end = children.end(); - while (i != end) { - i->print(c, level + delta_indent); - ++i; - } +void symmetry::do_print_tree(const print_tree & c, unsigned level) const +{ + c.s << std::string(level, ' ') << class_name() << " @" << this + << std::hex << ", hash=0x" << hashvalue << ", flags=0x" << flags << std::dec + << ", type="; + + switch (type) { + case none: c.s << "none"; break; + case symmetric: c.s << "symm"; break; + case antisymmetric: c.s << "anti"; break; + case cyclic: c.s << "cycl"; break; + default: c.s << ""; break; + } - } else { + c.s << ", indices=("; + if (!indices.empty()) { + std::set::const_iterator i = indices.begin(), end = indices.end(); + --end; + while (i != end) + c.s << *i++ << ","; + c.s << *i; + } + c.s << ")\n"; - if (children.empty()) { - if (indices.size() > 0) - c.s << *(indices.begin()); - else - c.s << "none"; - } else { - switch (type) { - case none: c.s << '!'; break; - case symmetric: c.s << '+'; break; - case antisymmetric: c.s << '-'; break; - case cyclic: c.s << '@'; break; - default: c.s << '?'; break; - } - c.s << '('; - size_t num = children.size(); - for (size_t i=0; iprint(c, level + c.delta_indent); + ++i; } } @@ -210,6 +267,18 @@ void symmetry::print(const print_context & c, unsigned level) const // non-virtual functions in this class ////////// +bool symmetry::has_cyclic() const +{ + if (type == cyclic) + return true; + + for (exvector::const_iterator i=children.begin(); i!=children.end(); ++i) + if (ex_to(*i).has_cyclic()) + return true; + + return false; +} + symmetry &symmetry::add(const symmetry &c) { // All children must have the same number of indices @@ -247,6 +316,72 @@ void symmetry::validate(unsigned n) // global functions ////////// +static const symmetry & index0() +{ + static ex s = (new symmetry(0))->setflag(status_flags::dynallocated); + return ex_to(s); +} + +static const symmetry & index1() +{ + static ex s = (new symmetry(1))->setflag(status_flags::dynallocated); + return ex_to(s); +} + +static const symmetry & index2() +{ + static ex s = (new symmetry(2))->setflag(status_flags::dynallocated); + return ex_to(s); +} + +static const symmetry & index3() +{ + static ex s = (new symmetry(3))->setflag(status_flags::dynallocated); + return ex_to(s); +} + +const symmetry & not_symmetric() +{ + static ex s = (new symmetry)->setflag(status_flags::dynallocated); + return ex_to(s); +} + +const symmetry & symmetric2() +{ + static ex s = (new symmetry(symmetry::symmetric, index0(), index1()))->setflag(status_flags::dynallocated); + return ex_to(s); +} + +const symmetry & symmetric3() +{ + static ex s = (new symmetry(symmetry::symmetric, index0(), index1()))->add(index2()).setflag(status_flags::dynallocated); + return ex_to(s); +} + +const symmetry & symmetric4() +{ + static ex s = (new symmetry(symmetry::symmetric, index0(), index1()))->add(index2()).add(index3()).setflag(status_flags::dynallocated); + return ex_to(s); +} + +const symmetry & antisymmetric2() +{ + static ex s = (new symmetry(symmetry::antisymmetric, index0(), index1()))->setflag(status_flags::dynallocated); + return ex_to(s); +} + +const symmetry & antisymmetric3() +{ + static ex s = (new symmetry(symmetry::antisymmetric, index0(), index1()))->add(index2()).setflag(status_flags::dynallocated); + return ex_to(s); +} + +const symmetry & antisymmetric4() +{ + static ex s = (new symmetry(symmetry::antisymmetric, index0(), index1()))->add(index2()).add(index3()).setflag(status_flags::dynallocated); + return ex_to(s); +} + class sy_is_less : public std::binary_function { exvector::iterator v; @@ -297,7 +432,7 @@ int canonicalize(exvector::iterator v, const symmetry &symm) { // Less than two elements? Then do nothing if (symm.indices.size() < 2) - return INT_MAX; + return std::numeric_limits::max(); // Canonicalize children first bool something_changed = false; @@ -308,7 +443,7 @@ int canonicalize(exvector::iterator v, const symmetry &symm) int child_sign = canonicalize(v, ex_to(*first)); if (child_sign == 0) return 0; - if (child_sign != INT_MAX) { + if (child_sign != std::numeric_limits::max()) { something_changed = true; sign *= child_sign; } @@ -335,7 +470,7 @@ int canonicalize(exvector::iterator v, const symmetry &symm) default: break; } - return something_changed ? sign : INT_MAX; + return something_changed ? sign : std::numeric_limits::max(); } @@ -363,7 +498,7 @@ static ex symm(const ex & e, exvector::const_iterator first, exvector::const_ite lst new_lst; for (unsigned i=0; i