]> www.ginac.de Git - ginac.git/blob - ginac/structure.h
3987d8068577aaf7c75d59c6f3c2ea2f622df09d
[ginac.git] / ginac / structure.h
1 /** @file structure.h
2  *
3  *  Wrapper template for making GiNaC classes out of C++ structures. */
4
5 /*
6  *  GiNaC Copyright (C) 1999-2008 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_STRUCTURE_H__
24 #define __GINAC_STRUCTURE_H__
25
26 #include <functional>
27
28 #include "ex.h"
29 #include "ncmul.h"
30 #include "numeric.h"
31 #include "operators.h"
32 #include "print.h"
33
34 namespace GiNaC {
35
36
37 /** Comparison policy: all structures of one type are equal */
38 template <class T>
39 class compare_all_equal {
40 protected:
41         static bool struct_is_equal(const T * t1, const T * t2) { return true; }
42         static int struct_compare(const T * t1, const T * t2) { return 0; }
43
44         // disallow destruction of structure through a compare_all_equal*
45 protected:
46         ~compare_all_equal() {}
47 };
48
49
50 /** Comparison policy: use std::equal_to/std::less (defaults to operators
51  *  == and <) to compare structures. */
52 template <class T>
53 class compare_std_less {
54 protected:
55         static bool struct_is_equal(const T * t1, const T * t2)
56         {
57                 return std::equal_to<T>()(*t1, *t2);
58         }
59
60         static int struct_compare(const T * t1, const T * t2)
61         {
62                 if (std::less<T>()(*t1, *t2))
63                         return -1;
64                 else if (std::less<T>()(*t2, *t1))
65                         return 1;
66                 else
67                         return 0;
68         }
69
70         // disallow destruction of structure through a compare_std_less*
71 protected:
72         ~compare_std_less() {}
73 };
74
75
76 /** Comparison policy: use bit-wise comparison to compare structures. */
77 template <class T>
78 class compare_bitwise {
79 protected:
80         static bool struct_is_equal(const T * t1, const T * t2)
81         {
82                 const char * cp1 = reinterpret_cast<const char *>(t1);
83                 const char * cp2 = reinterpret_cast<const char *>(t2);
84
85                 return std::equal(cp1, cp1 + sizeof(T), cp2);
86         }
87
88         static int struct_compare(const T * t1, const T * t2)
89         {
90                 const unsigned char * cp1 = reinterpret_cast<const unsigned char *>(t1);
91                 const unsigned char * cp2 = reinterpret_cast<const unsigned char *>(t2);
92                 typedef std::pair<const unsigned char *, const unsigned char *> cppair;
93
94                 cppair res = std::mismatch(cp1, cp1 + sizeof(T), cp2);
95
96                 if (res.first == cp1 + sizeof(T))
97                         return 0;
98                 else if (*res.first < *res.second)
99                         return -1;
100                 else
101                         return 1;
102         }
103
104         // disallow destruction of structure through a compare_bitwise*
105 protected:
106         ~compare_bitwise() {}
107 };
108
109
110 // Select default comparison policy
111 template <class T, template <class> class ComparisonPolicy = compare_all_equal> class structure;
112
113
114 /** Wrapper template for making GiNaC classes out of C++ structures. */
115 template <class T, template <class> class ComparisonPolicy>
116 class structure : public basic, public ComparisonPolicy<T> {
117         GINAC_DECLARE_REGISTERED_CLASS(structure, basic)
118
119         // helpers
120         static const char *get_class_name() { return "structure"; }
121
122         // constructors
123 public:
124         /** Construct structure as a copy of a given C++ structure. */
125         structure(const T & t) : obj(t) { }
126
127         // functions overriding virtual functions from base classes
128         // All these are just defaults that can be specialized by the user
129 public:
130         // evaluation
131         ex eval(int level = 0) const { return hold(); }
132         ex evalf(int level = 0) const { return inherited::evalf(level); }
133         ex evalm() const { return inherited::evalm(); }
134 protected:
135         ex eval_ncmul(const exvector & v) const { return hold_ncmul(v); }
136 public:
137         ex eval_indexed(const basic & i) const { return i.hold(); }
138
139         // printing
140         void print(const print_context & c, unsigned level = 0) const { inherited::print(c, level); }
141         unsigned precedence() const { return 70; }
142
143         // info
144         bool info(unsigned inf) const { return false; }
145
146         // operand access
147         size_t nops() const { return 0; }
148         ex op(size_t i) const { return inherited::op(i); }
149         ex operator[](const ex & index) const { return inherited::operator[](index); }
150         ex operator[](size_t i) const { return inherited::operator[](i); }
151         ex & let_op(size_t i) { return inherited::let_op(i); }
152         ex & operator[](const ex & index) { return inherited::operator[](index); }
153         ex & operator[](size_t i) { return inherited::operator[](i); }
154
155         // pattern matching
156         bool has(const ex & other, unsigned options = 0) const { return inherited::has(other, options); }
157         bool match(const ex & pattern, exmap& repl_lst) const { return inherited::match(pattern, repl_lst); }
158 protected:
159         bool match_same_type(const basic & other) const { return true; }
160 public:
161
162         // substitutions
163         ex subs(const exmap & m, unsigned options = 0) const { return inherited::subs(m, options); }
164
165         // function mapping
166         ex map(map_function & f) const { return inherited::map(f); }
167
168         // degree/coeff
169         int degree(const ex & s) const { return inherited::degree(s); }
170         int ldegree(const ex & s) const { return inherited::ldegree(s); }
171         ex coeff(const ex & s, int n = 1) const { return inherited::coeff(s, n); }
172
173         // expand/collect
174         ex expand(unsigned options = 0) const { return inherited::expand(options); }
175         ex collect(const ex & s, bool distributed = false) const { return inherited::collect(s, distributed); }
176
177         // differentiation and series expansion
178 protected:
179         ex derivative(const symbol & s) const { return inherited::derivative(s); }
180 public:
181         ex series(const relational & r, int order, unsigned options = 0) const { return inherited::series(r, order, options); }
182
183         // rational functions
184         ex normal(exmap & repl, exmap & rev_lookup, int level = 0) const { return inherited::normal(repl, rev_lookup, level); }
185         ex to_rational(exmap & repl) const { return inherited::to_rational(repl); }
186         ex to_polynomial(exmap & repl) const { return inherited::to_polynomial(repl); }
187
188         // polynomial algorithms
189         numeric integer_content() const { return 1; }
190         ex smod(const numeric & xi) const { return *this; }
191         numeric max_coefficient() const { return 1; }
192
193         // indexed objects
194         exvector get_free_indices() const { return exvector(); }
195         ex add_indexed(const ex & self, const ex & other) const { return self + other; }
196         ex scalar_mul_indexed(const ex & self, const numeric & other) const { return self * ex(other); }
197         bool contract_with(exvector::iterator self, exvector::iterator other, exvector & v) const { return false; }
198
199         // noncommutativity
200         unsigned return_type() const { return return_types::commutative; }
201         return_type_t return_type_tinfo() const 
202         {
203                 return_type_t r;
204                 r.rl = 0;
205                 r.tinfo = &typeid(*this);
206                 return r;
207         }
208
209 protected:
210         bool is_equal_same_type(const basic & other) const
211         {
212                 GINAC_ASSERT(is_a<structure>(other));
213                 const structure & o = static_cast<const structure &>(other);
214
215                 return struct_is_equal(&obj, &o.obj);
216         }
217
218         unsigned calchash() const { return inherited::calchash(); }
219
220         // non-virtual functions in this class
221 public:
222         // access to embedded structure
223         const T *operator->() const { return &obj; }
224         T &get_struct() { return obj; }
225         const T &get_struct() const { return obj; }
226 private:
227         T obj;
228 };
229
230
231 /** Default constructor */
232 template <class T, template <class> class CP>
233 structure<T, CP>::structure() { }
234
235 /** Construct object from archive_node. */
236 template <class T, template <class> class CP>
237 structure<T, CP>::structure(const archive_node &n, lst &sym_lst) : inherited(n, sym_lst) {}
238
239 /** Unarchive the object. */
240 template <class T, template <class> class CP>
241 ex structure<T, CP>::unarchive(const archive_node &n, lst &sym_lst)
242 {
243         return (new structure(n, sym_lst))->setflag(status_flags::dynallocated);
244 }
245
246 /** Archive the object. */
247 template <class T, template <class> class CP>
248 void structure<T, CP>::archive(archive_node &n) const
249 {
250         inherited::archive(n);
251 }
252
253 /** Compare two structures of the same type. */
254 template <class T, template <class> class CP>
255 int structure<T, CP>::compare_same_type(const basic & other) const
256 {
257         GINAC_ASSERT(is_a<structure>(other));
258         const structure & o = static_cast<const structure &>(other);
259
260         return struct_compare(&obj, &o.obj);
261 }
262
263 template <class T, template <class> class CP>
264 registered_class_info structure<T, CP>::reg_info = registered_class_info(registered_class_options(structure::get_class_name(), "basic", typeid(structure<T, CP>), &structure::unarchive));
265
266
267 } // namespace GiNaC
268
269 #endif // ndef __GINAC_STRUCTURE_H__