X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Fwildcard.cpp;h=38a67de90a44792d811cf7b4666fa55dd6999353;hp=f203c5f09d8d56b1ab5d5f6d8e8c667a5105644d;hb=f69a24a4fd6caf42ef773d1cef21562a8afa068a;hpb=d448856f20cb58f939ddbf636e7f72e3599b1468 diff --git a/ginac/wildcard.cpp b/ginac/wildcard.cpp index f203c5f0..38a67de9 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-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,55 +17,48 @@ * * 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 "wildcard.h" -#include "print.h" #include "archive.h" #include "utils.h" -#include "debugmsg.h" 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) +wildcard::wildcard() : inherited(&wildcard::tinfo_static), label(0) { - inherited::copy(other); - label = other.label; + setflag(status_flags::evaluated | status_flags::expanded); } -DEFAULT_DESTROY(wildcard) - ////////// // other constructors ////////// -wildcard::wildcard(unsigned l) : label(l) +wildcard::wildcard(unsigned l) : inherited(&wildcard::tinfo_static), 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) +wildcard::wildcard(const archive_node &n, lst &sym_lst) : inherited(n, sym_lst) { - debugmsg("wildcard constructor from archive_node", LOGLEVEL_CONSTRUCT); n.find_unsigned("label", label); + setflag(status_flags::evaluated | status_flags::expanded); } void wildcard::archive(archive_node &n) const @@ -91,24 +84,29 @@ int wildcard::compare_same_type(const basic & other) const return label < o.label ? -1 : 1; } -void wildcard::print(const print_context & c, unsigned level) const +void wildcard::do_print(const print_context & c, unsigned level) const +{ + c.s << "$" << label; +} + +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 { - debugmsg("wildcard print", LOGLEVEL_PRINT); - - if (is_a(c)) { - 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 << class_name() << '(' << label << ')'; } -unsigned wildcard::calchash(void) const +unsigned wildcard::calchash() const { // this is where the schoolbook method // (golden_ratio_hash(tinfo()) ^ label) // is not good enough yet... - hashvalue = golden_ratio_hash(golden_ratio_hash(tinfo()) ^ label); + hashvalue = golden_ratio_hash(golden_ratio_hash((p_int)tinfo()) ^ label); setflag(status_flags::hash_calculated); return hashvalue; } @@ -121,4 +119,14 @@ bool wildcard::match(const ex & pattern, lst & repl_lst) const return is_equal(ex_to(pattern)); } +bool haswild(const ex & x) +{ + if (is_a(x)) + return true; + for (size_t i=0; i