X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Fwildcard.cpp;h=98ff880b297b1c4c8ed88f45f0219f772f6b35d3;hp=528df593f0bbb5528499a28715fc4f669b053aa9;hb=dda45abd8a2c408f8b3eb7959a10dfb2468ecc3a;hpb=b617b5cf86e6f8ac01a339d9747c535257fcf8d0 diff --git a/ginac/wildcard.cpp b/ginac/wildcard.cpp index 528df593..98ff880b 100644 --- a/ginac/wildcard.cpp +++ b/ginac/wildcard.cpp @@ -3,7 +3,7 @@ * Implementation of GiNaC's wildcard objects. */ /* - * GiNaC Copyright (C) 1999-2001 Johannes Gutenberg University Mainz, Germany + * GiNaC Copyright (C) 1999-2009 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,56 +17,52 @@ * * 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 "wildcard.h" -#include "print.h" #include "archive.h" #include "utils.h" -#include "debugmsg.h" +#include "hash_seed.h" + +#include namespace GiNaC { -GINAC_IMPLEMENT_REGISTERED_CLASS(wildcard, basic) +GINAC_IMPLEMENT_REGISTERED_CLASS_OPT(wildcard, basic, + print_func(&wildcard::do_print). + print_func(&wildcard::do_print_tree). + print_func(&wildcard::do_print_python_repr)) ////////// -// default constructor, destructor, copy constructor assignment operator and helpers +// default constructor ////////// wildcard::wildcard() : label(0) { - debugmsg("wildcard default constructor", LOGLEVEL_CONSTRUCT); - tinfo_key = TINFO_wildcard; -} - -void wildcard::copy(const wildcard & other) -{ - inherited::copy(other); - label = other.label; + setflag(status_flags::evaluated | status_flags::expanded); } -DEFAULT_DESTROY(wildcard) - ////////// // other constructors ////////// wildcard::wildcard(unsigned l) : label(l) { - debugmsg("wildcard constructor from unsigned", LOGLEVEL_CONSTRUCT); - tinfo_key = TINFO_wildcard; + setflag(status_flags::evaluated | status_flags::expanded); } ////////// // archiving ////////// -wildcard::wildcard(const archive_node &n, const lst &sym_lst) : inherited(n, sym_lst) +void wildcard::read_archive(const archive_node& n, lst& sym_lst) { - debugmsg("wildcard constructor from archive_node", LOGLEVEL_CONSTRUCT); + inherited::read_archive(n, sym_lst); n.find_unsigned("label", label); + setflag(status_flags::evaluated | status_flags::expanded); } +GINAC_BIND_UNARCHIVER(wildcard); void wildcard::archive(archive_node &n) const { @@ -74,15 +70,13 @@ void wildcard::archive(archive_node &n) const n.add_unsigned("label", label); } -DEFAULT_UNARCHIVE(wildcard) - ////////// -// functions overriding virtual functions from bases classes +// functions overriding virtual functions from base classes ////////// int wildcard::compare_same_type(const basic & other) const { - GINAC_ASSERT(is_of_type(other, wildcard)); + GINAC_ASSERT(is_a(other)); const wildcard &o = static_cast(other); if (label == o.label) @@ -91,34 +85,50 @@ int wildcard::compare_same_type(const basic & other) const return label < o.label ? -1 : 1; } -void wildcard::print(const print_context & c, unsigned level = 0) const +void wildcard::do_print(const print_context & c, unsigned level) const { - debugmsg("wildcard print", LOGLEVEL_PRINT); - - if (is_of_type(c, print_tree)) { - c.s << std::string(level, ' ') << class_name() << " (" << label << ")" - << std::hex << ", hash=0x" << hashvalue << ", flags=0x" << flags << std::dec - << std::endl; - } else - c.s << "$" << label; + c.s << "$" << label; } -unsigned wildcard::calchash(void) const +void wildcard::do_print_tree(const print_tree & c, unsigned level) const +{ + c.s << std::string(level, ' ') << class_name() << "(" << label << ")" << " @" << this + << std::hex << ", hash=0x" << hashvalue << ", flags=0x" << flags << std::dec + << std::endl; +} + +void wildcard::do_print_python_repr(const print_python_repr & c, unsigned level) const +{ + c.s << class_name() << '(' << label << ')'; +} + +unsigned wildcard::calchash() const { // this is where the schoolbook method - // (golden_ratio_hash(tinfo()) ^ label) + // (golden_ratio_hash(typeid(*this).name()) ^ label) // is not good enough yet... - hashvalue = golden_ratio_hash(golden_ratio_hash(tinfo()) ^ label); + unsigned seed = make_hash_seed(typeid(*this)); + hashvalue = golden_ratio_hash(seed ^ label); setflag(status_flags::hash_calculated); return hashvalue; } -bool wildcard::match(const ex & pattern, lst & repl_lst) const +bool wildcard::match(const ex & pattern, exmap& repl_lst) const +{ + // Wildcards must match each other exactly (this is required for + // subs() to work properly because in the final step it substitutes + // all wildcards by their matching expressions) + return is_equal(ex_to(pattern)); +} + +bool haswild(const ex & x) { - // Wildcards must match exactly (this is required for subs() to work - // properly because in the final step it substitutes all wildcards by - // their matching expressions) - return is_equal(*pattern.bp); + if (is_a(x)) + return true; + for (size_t i=0; i