]> www.ginac.de Git - ginac.git/blob - ginac/ex.h
* Remove support for <strstream>. It is too bug-ridden.
[ginac.git] / ginac / ex.h
1 /** @file ex.h
2  *
3  *  Interface to GiNaC's light-weight expression handles. */
4
5 /*
6  *  GiNaC Copyright (C) 1999-2001 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 #ifndef __GINAC_EX_H__
24 #define __GINAC_EX_H__
25
26 #include "basic.h"
27 #include "operators.h"
28
29 #include <functional>
30
31 namespace GiNaC {
32
33 /** Helper class to initialize the library.  There must be one static object
34  *  of this class in every object file that makes use of our flyweights in
35  *  order to guarantee proper initialization.  Hence we put it into this
36  *  file which is included by every relevant file anyways.  This is modeled
37  *  after section 27.4.2.1.6 of the C++ standard, where cout and friends are
38  *  set up.
39  *
40  *  @see utils.cpp */
41 class library_init {
42 public:
43         library_init();
44         ~library_init();
45 private:
46         static int count;
47 };
48 /** For construction of flyweights, etc. */
49 static library_init library_initializer;
50
51 // Current versions of Cint don't link data declared extern within functions.
52 // FIXME: Fix Cint and later remove this from here.
53 #if defined(G__CINTVERSION)
54 extern const class numeric *_num0_p;
55 #endif
56
57
58 class symbol;
59 class lst;
60 class scalar_products;
61
62
63 /** Lightweight wrapper for GiNaC's symbolic objects.  Basically all it does is
64  *  to hold a pointer to the other objects, manage the reference counting and
65  *  provide methods for manipulation of these objects.  (Some people call such
66  *  a thing a proxy class.) */
67 class ex
68 {
69         friend class archive_node;
70         friend bool are_ex_trivially_equal(const ex &, const ex &);
71         template<class T> friend const T &ex_to(const ex &);
72         template<class T> friend bool is_a(const ex &);
73         template<class T> friend bool is_exactly_a(const ex &);
74         
75 // member functions
76         
77         // default ctor, dtor, copy ctor assignment operator and helpers
78 public:
79         ex();
80         ~ex();
81         ex(const ex & other);
82         ex & operator=(const ex & other);
83         // other ctors
84 public:
85         ex(const basic & other);
86         ex(int i);
87         ex(unsigned int i);
88         ex(long i);
89         ex(unsigned long i);
90         ex(double const d);
91         /** Construct ex from string and a list of symbols. The input grammar is
92          *  similar to the GiNaC output format. All symbols to be used in the
93          *  expression must be specified in a lst in the second argument. Undefined
94          *  symbols and other parser errors will throw an exception. */
95         ex(const std::string &s, const ex &l);
96         
97         // non-virtual functions in this class
98 public:
99         void swap(ex & other);
100         void print(const print_context & c, unsigned level = 0) const;
101         void printtree(std::ostream & os) const;
102         void dbgprint(void) const;
103         void dbgprinttree(void) const;
104         bool info(unsigned inf) const { return bp->info(inf); }
105         unsigned nops() const { return bp->nops(); }
106         ex expand(unsigned options=0) const;
107         bool has(const ex & pattern) const { return bp->has(pattern); }
108         ex map(map_function & f) const { return bp->map(f); }
109         ex map(ex (*f)(const ex & e)) const;
110         bool find(const ex & pattern, lst & found) const;
111         int degree(const ex & s) const { return bp->degree(s); }
112         int ldegree(const ex & s) const { return bp->ldegree(s); }
113         ex coeff(const ex & s, int n = 1) const { return bp->coeff(s, n); }
114         ex lcoeff(const ex & s) const { return coeff(s, degree(s)); }
115         ex tcoeff(const ex & s) const { return coeff(s, ldegree(s)); }
116         ex numer(void) const;
117         ex denom(void) const;
118         ex numer_denom(void) const;
119         ex unit(const symbol &x) const;
120         ex content(const symbol &x) const;
121         numeric integer_content(void) const;
122         ex primpart(const symbol &x) const;
123         ex primpart(const symbol &x, const ex &cont) const;
124         ex normal(int level = 0) const;
125         ex to_rational(lst &repl_lst) const { return bp->to_rational(repl_lst); }
126         ex smod(const numeric &xi) const { return bp->smod(xi); }
127         numeric max_coefficient(void) const;
128         ex collect(const ex & s, bool distributed = false) const { return bp->collect(s, distributed); }
129         ex eval(int level = 0) const { return bp->eval(level); }
130         ex evalf(int level = 0) const { return bp->evalf(level); }
131         ex evalm(void) const { return bp->evalm(); }
132         ex diff(const symbol & s, unsigned nth = 1) const;
133         ex series(const ex & r, int order, unsigned options = 0) const;
134         bool match(const ex & pattern) const;
135         bool match(const ex & pattern, lst & repl_lst) const { return bp->match(pattern, repl_lst); }
136         ex subs(const lst & ls, const lst & lr, bool no_pattern = false) const { return bp->subs(ls, lr, no_pattern); }
137         ex subs(const ex & e, bool no_pattern = false) const { return bp->subs(e, no_pattern); }
138         exvector get_free_indices(void) const { return bp->get_free_indices(); }
139         ex simplify_indexed(void) const;
140         ex simplify_indexed(const scalar_products & sp) const;
141         ex symmetrize(void) const;
142         ex symmetrize(const lst & l) const;
143         ex antisymmetrize(void) const;
144         ex antisymmetrize(const lst & l) const;
145         ex symmetrize_cyclic(void) const;
146         ex symmetrize_cyclic(const lst & l) const;
147         ex simplify_ncmul(const exvector & v) const { return bp->simplify_ncmul(v); }
148         ex operator[](const ex & index) const;
149         ex operator[](int i) const;
150         ex op(int i) const { return bp->op(i); }
151         ex & let_op(int i);
152         ex lhs(void) const;
153         ex rhs(void) const;
154         int compare(const ex & other) const;
155         bool is_equal(const ex & other) const;
156         bool is_zero(void) const { extern const ex _ex0; return is_equal(_ex0); }
157         
158         unsigned return_type(void) const { return bp->return_type(); }
159         unsigned return_type_tinfo(void) const { return bp->return_type_tinfo(); }
160         unsigned gethash(void) const { return bp->gethash(); }
161 private:
162         void construct_from_basic(const basic & other);
163         void construct_from_int(int i);
164         void construct_from_uint(unsigned int i);
165         void construct_from_long(long i);
166         void construct_from_ulong(unsigned long i);
167         void construct_from_double(double d);
168         void construct_from_string_and_lst(const std::string &s, const ex &l);
169         void makewriteable();
170
171 #ifdef OBSCURE_CINT_HACK
172 public:
173         static bool last_created_or_assigned_bp_can_be_converted_to_ex(void)
174         {
175                 if (last_created_or_assigned_bp==0) return false;
176                 if ((last_created_or_assigned_bp->flags &
177                          status_flags::dynallocated)==0) return false;
178                 if ((last_created_or_assigned_bp->flags &
179                          status_flags::evaluated)==0) return false;
180                 return true;
181         }
182 protected:
183         void update_last_created_or_assigned_bp(void)
184         {
185                 if (last_created_or_assigned_bp!=0) {
186                         if (--last_created_or_assigned_bp->refcount == 0) {
187                                 delete last_created_or_assigned_bp;
188                         }
189                 }
190                 last_created_or_assigned_bp = bp;
191                 ++last_created_or_assigned_bp->refcount;
192                 last_created_or_assigned_exp = (long)(void *)(this);
193         }
194 #endif // def OBSCURE_CINT_HACK
195
196 // member variables
197
198 public:
199         basic *bp;      ///< pointer to basic object managed by this, direct manipulation deprecated
200 #ifdef OBSCURE_CINT_HACK
201         static basic * last_created_or_assigned_bp;
202         static basic * dummy_bp;
203         static long last_created_or_assigned_exp;
204 #endif // def OBSCURE_CINT_HACK
205 };
206
207
208 // performance-critical inlined method implementations
209
210 inline
211 ex::ex()
212 {
213         /* debugmsg("ex default ctor",LOGLEVEL_CONSTRUCT); */
214         extern const class numeric *_num0_p;
215         bp = (basic*)_num0_p;
216         GINAC_ASSERT(bp!=0);
217         GINAC_ASSERT(bp->flags & status_flags::dynallocated);
218         ++bp->refcount;
219 #ifdef OBSCURE_CINT_HACK
220         update_last_created_or_assigned_bp();
221 #endif // def OBSCURE_CINT_HACK
222 }
223
224 inline
225 ex::~ex()
226 {
227         /*debugmsg("ex dtor",LOGLEVEL_DESTRUCT);*/
228         GINAC_ASSERT(bp!=0);
229         GINAC_ASSERT(bp->flags & status_flags::dynallocated);
230         if (--bp->refcount == 0)
231                 delete bp;
232 }
233
234 inline
235 ex::ex(const ex & other) : bp(other.bp)
236 {
237         /*debugmsg("ex copy ctor",LOGLEVEL_CONSTRUCT);*/
238         GINAC_ASSERT(bp!=0);
239         GINAC_ASSERT((bp->flags) & status_flags::dynallocated);
240         ++bp->refcount;
241 #ifdef OBSCURE_CINT_HACK
242         update_last_created_or_assigned_bp();
243 #endif // def OBSCURE_CINT_HACK
244 }
245
246 inline
247 ex & ex::operator=(const ex & other)
248 {
249         /*debugmsg("ex operator=",LOGLEVEL_ASSIGNMENT);*/
250         GINAC_ASSERT(bp!=0);
251         GINAC_ASSERT(bp->flags & status_flags::dynallocated);
252         GINAC_ASSERT(other.bp!=0);
253         GINAC_ASSERT(other.bp->flags & status_flags::dynallocated);
254         // NB: must first increment other.bp->refcount, since other might be *this.
255         ++other.bp->refcount;
256         if (--bp->refcount==0)
257                 delete bp;
258         bp = other.bp;
259 #ifdef OBSCURE_CINT_HACK
260         update_last_created_or_assigned_bp();
261 #endif // def OBSCURE_CINT_HACK
262         return *this;
263 }
264
265 inline
266 ex::ex(const basic & other)
267 {
268         /*debugmsg("ex ctor from basic",LOGLEVEL_CONSTRUCT);*/
269         construct_from_basic(other);
270 #ifdef OBSCURE_CINT_HACK
271         update_last_created_or_assigned_bp();
272 #endif // def OBSCURE_CINT_HACK
273 }
274
275 inline
276 ex::ex(int i)
277 {
278         /*debugmsg("ex ctor from int",LOGLEVEL_CONSTRUCT);*/
279         construct_from_int(i);
280 #ifdef OBSCURE_CINT_HACK
281         update_last_created_or_assigned_bp();
282 #endif // def OBSCURE_CINT_HACK
283 }
284
285 inline
286 ex::ex(unsigned int i)
287 {
288         /*debugmsg("ex ctor from unsigned int",LOGLEVEL_CONSTRUCT);*/
289         construct_from_uint(i);
290 #ifdef OBSCURE_CINT_HACK
291         update_last_created_or_assigned_bp();
292 #endif // def OBSCURE_CINT_HACK
293 }
294
295 inline
296 ex::ex(long i)
297 {
298         /*debugmsg("ex ctor from long",LOGLEVEL_CONSTRUCT);*/
299         construct_from_long(i);
300 #ifdef OBSCURE_CINT_HACK
301         update_last_created_or_assigned_bp();
302 #endif // def OBSCURE_CINT_HACK
303 }
304
305 inline
306 ex::ex(unsigned long i)
307 {
308         /*debugmsg("ex ctor from unsigned long",LOGLEVEL_CONSTRUCT);*/
309         construct_from_ulong(i);
310 #ifdef OBSCURE_CINT_HACK
311         update_last_created_or_assigned_bp();
312 #endif // def OBSCURE_CINT_HACK
313 }
314
315 inline
316 ex::ex(double const d)
317 {
318         /*debugmsg("ex ctor from double",LOGLEVEL_CONSTRUCT);*/
319         construct_from_double(d);
320 #ifdef OBSCURE_CINT_HACK
321         update_last_created_or_assigned_bp();
322 #endif // def OBSCURE_CINT_HACK
323 }
324
325 inline
326 ex::ex(const std::string &s, const ex &l)
327 {
328         /*debugmsg("ex ctor from string,lst",LOGLEVEL_CONSTRUCT);*/
329         construct_from_string_and_lst(s, l);
330 #ifdef OBSCURE_CINT_HACK
331         update_last_created_or_assigned_bp();
332 #endif // def OBSCURE_CINT_HACK
333 }
334
335 inline
336 int ex::compare(const ex & other) const
337 {
338         GINAC_ASSERT(bp!=0);
339         GINAC_ASSERT(other.bp!=0);
340         if (bp==other.bp)  // trivial case: both expressions point to same basic
341                 return 0;
342         return bp->compare(*other.bp);
343 }
344
345 inline
346 bool ex::is_equal(const ex & other) const
347 {
348         GINAC_ASSERT(bp!=0);
349         GINAC_ASSERT(other.bp!=0);
350         if (bp==other.bp)  // trivial case: both expressions point to same basic
351                 return true;
352         return bp->is_equal(*other.bp);
353 }
354
355
356 // utility functions
357 inline bool are_ex_trivially_equal(const ex &e1, const ex &e2)
358 {
359         return e1.bp == e2.bp;
360 }
361
362 // wrapper functions around member functions
363 inline unsigned nops(const ex & thisex)
364 { return thisex.nops(); }
365
366 inline ex expand(const ex & thisex, unsigned options = 0)
367 { return thisex.expand(options); }
368
369 inline bool has(const ex & thisex, const ex & pattern)
370 { return thisex.has(pattern); }
371
372 inline bool find(const ex & thisex, const ex & pattern, lst & found)
373 { return thisex.find(pattern, found); }
374
375 inline int degree(const ex & thisex, const ex & s)
376 { return thisex.degree(s); }
377
378 inline int ldegree(const ex & thisex, const ex & s)
379 { return thisex.ldegree(s); }
380
381 inline ex coeff(const ex & thisex, const ex & s, int n=1)
382 { return thisex.coeff(s, n); }
383
384 inline ex numer(const ex & thisex)
385 { return thisex.numer(); }
386
387 inline ex denom(const ex & thisex)
388 { return thisex.denom(); }
389
390 inline ex numer_denom(const ex & thisex)
391 { return thisex.numer_denom(); }
392
393 inline ex normal(const ex & thisex, int level=0)
394 { return thisex.normal(level); }
395
396 inline ex to_rational(const ex & thisex, lst & repl_lst)
397 { return thisex.to_rational(repl_lst); }
398
399 inline ex collect(const ex & thisex, const ex & s, bool distributed = false)
400 { return thisex.collect(s, distributed); }
401
402 inline ex eval(const ex & thisex, int level = 0)
403 { return thisex.eval(level); }
404
405 inline ex evalf(const ex & thisex, int level = 0)
406 { return thisex.evalf(level); }
407
408 inline ex evalm(const ex & thisex)
409 { return thisex.evalm(); }
410
411 inline ex diff(const ex & thisex, const symbol & s, unsigned nth = 1)
412 { return thisex.diff(s, nth); }
413
414 inline ex series(const ex & thisex, const ex & r, int order, unsigned options = 0)
415 { return thisex.series(r, order, options); }
416
417 inline bool match(const ex & thisex, const ex & pattern, lst & repl_lst)
418 { return thisex.match(pattern, repl_lst); }
419
420 inline ex subs(const ex & thisex, const ex & e)
421 { return thisex.subs(e); }
422
423 inline ex subs(const ex & thisex, const lst & ls, const lst & lr)
424 { return thisex.subs(ls, lr); }
425
426 inline ex simplify_indexed(const ex & thisex)
427 { return thisex.simplify_indexed(); }
428
429 inline ex simplify_indexed(const ex & thisex, const scalar_products & sp)
430 { return thisex.simplify_indexed(sp); }
431
432 inline ex symmetrize(const ex & thisex)
433 { return thisex.symmetrize(); }
434
435 inline ex symmetrize(const ex & thisex, const lst & l)
436 { return thisex.symmetrize(l); }
437
438 inline ex antisymmetrize(const ex & thisex)
439 { return thisex.antisymmetrize(); }
440
441 inline ex antisymmetrize(const ex & thisex, const lst & l)
442 { return thisex.antisymmetrize(l); }
443
444 inline ex symmetrize_cyclic(const ex & thisex)
445 { return thisex.symmetrize_cyclic(); }
446
447 inline ex symmetrize_cyclic(const ex & thisex, const lst & l)
448 { return thisex.symmetrize_cyclic(l); }
449
450 inline ex op(const ex & thisex, int i)
451 { return thisex.op(i); }
452
453 inline ex lhs(const ex & thisex)
454 { return thisex.lhs(); }
455
456 inline ex rhs(const ex & thisex)
457 { return thisex.rhs(); }
458
459 inline bool is_zero(const ex & thisex)
460 { return thisex.is_zero(); }
461
462 inline void swap(ex & e1, ex & e2)
463 { e1.swap(e2); }
464
465
466 /* Function objects for STL sort() etc. */
467 struct ex_is_less : public std::binary_function<ex, ex, bool> {
468         bool operator() (const ex &lh, const ex &rh) const { return lh.compare(rh) < 0; }
469 };
470
471 struct ex_is_equal : public std::binary_function<ex, ex, bool> {
472         bool operator() (const ex &lh, const ex &rh) const { return lh.is_equal(rh); }
473 };
474
475 struct ex_swap : public std::binary_function<ex, ex, void> {
476         void operator() (ex &lh, ex &rh) const { lh.swap(rh); }
477 };
478
479
480 /* Convert function pointer to function object suitable for map(). */
481 class pointer_to_map_function : public map_function {
482 protected:
483         ex (*ptr)(const ex &);
484 public:
485         explicit pointer_to_map_function(ex (*x)(const ex &)) : ptr(x) {}
486         ex operator()(const ex & e) { return ptr(e); }
487 };
488
489 template<class T1>
490 class pointer_to_map_function_1arg : public map_function {
491 protected:
492         ex (*ptr)(const ex &, T1);
493         T1 arg1;
494 public:
495         explicit pointer_to_map_function_1arg(ex (*x)(const ex &, T1), T1 a1) : ptr(x), arg1(a1) {}
496         ex operator()(const ex & e) { return ptr(e, arg1); }
497 };
498
499 template<class T1, class T2>
500 class pointer_to_map_function_2args : public map_function {
501 protected:
502         ex (*ptr)(const ex &, T1, T2);
503         T1 arg1;
504         T2 arg2;
505 public:
506         explicit pointer_to_map_function_2args(ex (*x)(const ex &, T1, T2), T1 a1, T2 a2) : ptr(x), arg1(a1), arg2(a2) {}
507         ex operator()(const ex & e) { return ptr(e, arg1, arg2); }
508 };
509
510 template<class T1, class T2, class T3>
511 class pointer_to_map_function_3args : public map_function {
512 protected:
513         ex (*ptr)(const ex &, T1, T2, T3);
514         T1 arg1;
515         T2 arg2;
516         T3 arg3;
517 public:
518         explicit pointer_to_map_function_3args(ex (*x)(const ex &, T1, T2, T3), T1 a1, T2 a2, T3 a3) : ptr(x), arg1(a1), arg2(a2), arg3(a3) {}
519         ex operator()(const ex & e) { return ptr(e, arg1, arg2, arg3); }
520 };
521
522 inline ex ex::map(ex (*f)(const ex & e)) const
523 {
524         pointer_to_map_function fcn(f);
525         return bp->map(fcn);
526 }
527
528
529 } // namespace GiNaC
530
531 #endif // ndef __GINAC_EX_H__