]> www.ginac.de Git - ginac.git/blob - ginac/wildcard.cpp
use new-style print methods
[ginac.git] / ginac / wildcard.cpp
1 /** @file wildcard.cpp
2  *
3  *  Implementation of GiNaC's wildcard objects. */
4
5 /*
6  *  GiNaC Copyright (C) 1999-2003 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  */
22
23 #include <iostream>
24
25 #include "wildcard.h"
26 #include "print.h"
27 #include "archive.h"
28 #include "utils.h"
29
30 namespace GiNaC {
31
32 GINAC_IMPLEMENT_REGISTERED_CLASS_OPT(wildcard, basic,
33   print_func<print_context>(&wildcard::do_print).
34   print_func<print_tree>(&wildcard::do_print_tree).
35   print_func<print_python_repr>(&wildcard::do_print_python_repr))
36
37 //////////
38 // default constructor
39 //////////
40
41 wildcard::wildcard() : inherited(TINFO_wildcard), label(0)
42 {
43         setflag(status_flags::evaluated | status_flags::expanded);
44 }
45
46 //////////
47 // other constructors
48 //////////
49
50 wildcard::wildcard(unsigned l) : inherited(TINFO_wildcard), label(l)
51 {
52         setflag(status_flags::evaluated | status_flags::expanded);
53 }
54
55 //////////
56 // archiving
57 //////////
58
59 wildcard::wildcard(const archive_node &n, lst &sym_lst) : inherited(n, sym_lst)
60 {
61         n.find_unsigned("label", label);
62         setflag(status_flags::evaluated | status_flags::expanded);
63 }
64
65 void wildcard::archive(archive_node &n) const
66 {
67         inherited::archive(n);
68         n.add_unsigned("label", label);
69 }
70
71 DEFAULT_UNARCHIVE(wildcard)
72
73 //////////
74 // functions overriding virtual functions from base classes
75 //////////
76
77 int wildcard::compare_same_type(const basic & other) const
78 {
79         GINAC_ASSERT(is_a<wildcard>(other));
80         const wildcard &o = static_cast<const wildcard &>(other);
81
82         if (label == o.label)
83                 return 0;
84         else
85                 return label < o.label ? -1 : 1;
86 }
87
88 void wildcard::do_print(const print_context & c, unsigned level) const
89 {
90         c.s << "$" << label;
91 }
92
93 void wildcard::do_print_tree(const print_tree & c, unsigned level) const
94 {
95         c.s << std::string(level, ' ') << class_name() << " (" << label << ")"
96             << std::hex << ", hash=0x" << hashvalue << ", flags=0x" << flags << std::dec
97             << std::endl;
98 }
99
100 void wildcard::do_print_python_repr(const print_python_repr & c, unsigned level) const
101 {
102         c.s << class_name() << '(' << label << ')';
103 }
104
105 unsigned wildcard::calchash() const
106 {
107         // this is where the schoolbook method
108         // (golden_ratio_hash(tinfo()) ^ label)
109         // is not good enough yet...
110         hashvalue = golden_ratio_hash(golden_ratio_hash(tinfo()) ^ label);
111         setflag(status_flags::hash_calculated);
112         return hashvalue;
113 }
114
115 bool wildcard::match(const ex & pattern, lst & repl_lst) const
116 {
117         // Wildcards must match each other exactly (this is required for
118         // subs() to work properly because in the final step it substitutes
119         // all wildcards by their matching expressions)
120         return is_equal(ex_to<basic>(pattern));
121 }
122
123 } // namespace GiNaC