]> www.ginac.de Git - ginac.git/blob - ginac/wildcard.h
Improved handling of convergence transformationis for Li/G (fixes problems with certa...
[ginac.git] / ginac / wildcard.h
1 /** @file wildcard.h
2  *
3  *  Interface to GiNaC's wildcard objects. */
4
5 /*
6  *  GiNaC Copyright (C) 1999-2007 Johannes Gutenberg University Mainz, Germany
7  *
8  *  This program is free software; you can redistribute it and/or modify
9  *  it under the terms of the GNU General Public License as published by
10  *  the Free Software Foundation; either version 2 of the License, or
11  *  (at your option) any later version.
12  *
13  *  This program is distributed in the hope that it will be useful,
14  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  *  GNU General Public License for more details.
17  *
18  *  You should have received a copy of the GNU General Public License
19  *  along with this program; if not, write to the Free Software
20  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
21  */
22
23 #ifndef __GINAC_WILDCARD_H__
24 #define __GINAC_WILDCARD_H__
25
26 #include "ex.h"
27
28 namespace GiNaC {
29
30
31 /** This class acts as a wildcard for subs(), match(), has() and find(). An
32  *  integer label is used to identify different wildcards. */
33 class wildcard : public basic
34 {
35         GINAC_DECLARE_REGISTERED_CLASS(wildcard, basic)
36
37         // other constructors
38 public:
39         /** Construct wildcard with specified label. */
40         wildcard(unsigned label);
41
42         // functions overriding virtual functions from base classes
43 public:
44         bool match(const ex & pattern, lst & repl_lst) const;
45
46 protected:
47         unsigned calchash() const;
48
49         // non-virtual functions in this class
50 public:
51         unsigned get_label() const {return label;}
52
53 protected:
54         void do_print(const print_context & c, unsigned level) const;
55         void do_print_tree(const print_tree & c, unsigned level) const;
56         void do_print_python_repr(const print_python_repr & c, unsigned level) const;
57
58         // member variables
59 private:
60         unsigned label; /**< Label used to distinguish different wildcards */
61 };
62
63
64 // utility functions
65
66 /** Create a wildcard object with the specified label. */
67 inline ex wild(unsigned label = 0)
68 {
69         return wildcard(label);
70 }
71
72 /** Check whether x has a wildcard anywhere as a subexpression. */
73 bool haswild(const ex & x);
74
75 } // namespace GiNaC
76
77 #endif // ndef __GINAC_WILDCARD_H__