X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Fwildcard.h;h=1e51b3768ad181693132a39a9c683a72f84ecce3;hp=4b0e31f668807530741be6f89a9e1834b48c87d5;hb=29b420743599f001b8bfc8b63fb6ac81aa3dfba7;hpb=d448856f20cb58f939ddbf636e7f72e3599b1468 diff --git a/ginac/wildcard.h b/ginac/wildcard.h index 4b0e31f6..1e51b376 100644 --- a/ginac/wildcard.h +++ b/ginac/wildcard.h @@ -3,7 +3,7 @@ * Interface to GiNaC's wildcard objects. */ /* - * GiNaC Copyright (C) 1999-2001 Johannes Gutenberg University Mainz, Germany + * GiNaC Copyright (C) 1999-2005 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,7 +17,7 @@ * * 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 */ #ifndef __GINAC_WILDCARD_H__ @@ -41,15 +41,19 @@ public: // functions overriding virtual functions from base classes public: - void print(const print_context & c, unsigned level = 0) const; bool match(const ex & pattern, lst & repl_lst) const; protected: - unsigned calchash(void) const; + unsigned calchash() const; // non-virtual functions in this class public: - unsigned get_label(void) const {return label;} + unsigned get_label() const {return label;} + +protected: + void do_print(const print_context & c, unsigned level) const; + void do_print_tree(const print_tree & c, unsigned level) const; + void do_print_python_repr(const print_python_repr & c, unsigned level) const; // member variables private: @@ -59,18 +63,15 @@ private: // utility functions -/** Specialization of is_exactly_a(obj) for wildcard objects. */ -template<> inline bool is_exactly_a(const basic & obj) -{ - return obj.tinfo()==TINFO_wildcard; -} - /** Create a wildcard object with the specified label. */ inline ex wild(unsigned label = 0) { return wildcard(label); } +/** Check whether x has a wildcard anywhere as a subexpression. */ +bool haswild(const ex & x); + } // namespace GiNaC #endif // ndef __GINAC_WILDCARD_H__