]> www.ginac.de Git - ginac.git/blob - ginac/ex.cpp
1849789871585a3d96318454d8f49e86769bae2c
[ginac.git] / ginac / ex.cpp
1 /** @file ex.cpp
2  *
3  *  Implementation of 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 #include <iostream>
24 #include <stdexcept>
25
26 #include "ex.h"
27 #include "add.h"
28 #include "mul.h"
29 #include "ncmul.h"
30 #include "numeric.h"
31 #include "power.h"
32 #include "lst.h"
33 #include "relational.h"
34 #include "input_lexer.h"
35 #include "debugmsg.h"
36 #include "utils.h"
37
38 namespace GiNaC {
39
40 //////////
41 // other ctors
42 //////////
43
44 // none (all inlined)
45
46 //////////
47 // functions overriding virtual functions from bases classes
48 //////////
49
50 // none
51
52 //////////
53 // new virtual functions which can be overridden by derived classes
54 //////////
55
56 // none
57
58 //////////
59 // non-virtual functions in this class
60 //////////
61
62 // public
63
64 /** Efficiently swap the contents of two expressions. */
65 void ex::swap(ex & other)
66 {
67         debugmsg("ex swap",LOGLEVEL_MEMBER_FUNCTION);
68
69         GINAC_ASSERT(bp!=0);
70         GINAC_ASSERT(bp->flags & status_flags::dynallocated);
71         GINAC_ASSERT(other.bp!=0);
72         GINAC_ASSERT(other.bp->flags & status_flags::dynallocated);
73         
74         basic * tmpbp = bp;
75         bp = other.bp;
76         other.bp = tmpbp;
77 }
78
79 /** Print expression to stream. The formatting of the output is determined
80  *  by the kind of print_context object that is passed. Possible formattings
81  *  include ginsh-parsable output (the default), tree-like output for
82  *  debugging, and C++ source.
83  *  @see print_context */
84 void ex::print(const print_context & c, unsigned level) const
85 {
86         debugmsg("ex print", LOGLEVEL_PRINT);
87         GINAC_ASSERT(bp!=0);
88         bp->print(c, level);
89 }
90
91 /** Print expression to stream in a tree-like format suitable for debugging. */
92 void ex::printtree(std::ostream & os) const
93 {
94         debugmsg("ex printtree", LOGLEVEL_PRINT);
95         GINAC_ASSERT(bp!=0);
96         bp->print(print_tree(os));
97 }
98
99 /** Little wrapper arount print to be called within a debugger. */
100 void ex::dbgprint(void) const
101 {
102         debugmsg("ex dbgprint", LOGLEVEL_PRINT);
103         GINAC_ASSERT(bp!=0);
104         bp->dbgprint();
105 }
106
107 /** Little wrapper arount printtree to be called within a debugger. */
108 void ex::dbgprinttree(void) const
109 {
110         debugmsg("ex dbgprinttree", LOGLEVEL_PRINT);
111         GINAC_ASSERT(bp!=0);
112         bp->dbgprinttree();
113 }
114
115 ex ex::expand(unsigned options) const
116 {
117         GINAC_ASSERT(bp!=0);
118         if (bp->flags & status_flags::expanded)
119                 return *bp;
120         else
121                 return bp->expand(options);
122 }
123
124 /** Compute partial derivative of an expression.
125  *
126  *  @param s  symbol by which the expression is derived
127  *  @param nth  order of derivative (default 1)
128  *  @return partial derivative as a new expression */
129 ex ex::diff(const symbol & s, unsigned nth) const
130 {
131         GINAC_ASSERT(bp!=0);
132
133         if (!nth)
134                 return *this;
135         else
136                 return bp->diff(s, nth);
137 }
138
139 /** Check whether expression matches a specified pattern. */
140 bool ex::match(const ex & pattern) const
141 {
142         lst repl_lst;
143         return bp->match(pattern, repl_lst);
144 }
145
146 ex ex::operator[](const ex & index) const
147 {
148         debugmsg("ex operator[ex]",LOGLEVEL_OPERATOR);
149         GINAC_ASSERT(bp!=0);
150         return (*bp)[index];
151 }
152
153 ex ex::operator[](int i) const
154 {
155         debugmsg("ex operator[int]",LOGLEVEL_OPERATOR);
156         GINAC_ASSERT(bp!=0);
157         return (*bp)[i];
158 }
159
160 /** Return modifyable operand/member at position i. */
161 ex & ex::let_op(int i)
162 {
163         debugmsg("ex let_op()",LOGLEVEL_MEMBER_FUNCTION);
164         makewriteable();
165         GINAC_ASSERT(bp!=0);
166         return bp->let_op(i);
167 }
168
169 /** Left hand side of relational expression. */
170 ex ex::lhs(void) const
171 {
172         debugmsg("ex lhs()",LOGLEVEL_MEMBER_FUNCTION);
173         if (!is_ex_of_type(*this,relational))
174                 throw std::runtime_error("ex::lhs(): not a relation");
175         return (*static_cast<relational *>(bp)).lhs();
176 }
177
178 /** Right hand side of relational expression. */
179 ex ex::rhs(void) const
180 {
181         debugmsg("ex rhs()",LOGLEVEL_MEMBER_FUNCTION);
182         if (!is_ex_of_type(*this,relational))
183                 throw std::runtime_error("ex::rhs(): not a relation");
184         return (*static_cast<relational *>(bp)).rhs();
185 }
186
187 // private
188
189 /** Make this ex writable (if more than one ex handle the same basic) by 
190  *  unlinking the object and creating an unshared copy of it. */
191 void ex::makewriteable()
192 {
193         debugmsg("ex makewriteable",LOGLEVEL_MEMBER_FUNCTION);
194         GINAC_ASSERT(bp!=0);
195         GINAC_ASSERT(bp->flags & status_flags::dynallocated);
196         if (bp->refcount > 1) {
197                 basic * bp2 = bp->duplicate();
198                 ++bp2->refcount;
199                 bp2->setflag(status_flags::dynallocated);
200                 --bp->refcount;
201                 bp = bp2;
202         }
203         GINAC_ASSERT(bp->refcount==1);
204 }
205
206 /** Ctor from basic implementation.
207  *  @see ex::ex(const basic &) */
208 void ex::construct_from_basic(const basic & other)
209 {
210         if ((other.flags & status_flags::evaluated)==0) {
211                 // cf. copy ctor
212                 const ex & tmpex = other.eval(1); // evaluate only one (top) level
213                 bp = tmpex.bp;
214                 GINAC_ASSERT(bp!=0);
215                 GINAC_ASSERT(bp->flags & status_flags::dynallocated);
216                 ++bp->refcount;
217                 if ((other.flags & status_flags::dynallocated)&&(other.refcount==0))
218                         delete &const_cast<basic &>(other);
219         } else {
220                 if (other.flags & status_flags::dynallocated) {
221                         // ok, it is already on the heap, so just copy bp:
222                         bp = &const_cast<basic &>(other);
223                 } else {
224                         // create a duplicate on the heap:
225                         bp = other.duplicate();
226                         bp->setflag(status_flags::dynallocated);
227                 }
228                 GINAC_ASSERT(bp!=0);
229                 ++bp->refcount;
230         }
231         GINAC_ASSERT(bp!=0);
232         GINAC_ASSERT(bp->flags & status_flags::dynallocated);
233 }
234
235 void ex::construct_from_int(int i)
236 {
237         switch (i) {  // some tiny efficiency-hack
238         case -2:
239                 bp = _ex_2().bp;
240                 ++bp->refcount;
241                 break;
242         case -1:
243                 bp = _ex_1().bp;
244                 ++bp->refcount;
245                 break;
246         case 0:
247                 bp = _ex0().bp;
248                 ++bp->refcount;
249                 break;
250         case 1:
251                 bp = _ex1().bp;
252                 ++bp->refcount;
253                 break;
254         case 2:
255                 bp = _ex2().bp;
256                 ++bp->refcount;
257                 break;
258         default:
259                 bp = new numeric(i);
260                 bp->setflag(status_flags::dynallocated);
261                 ++bp->refcount;
262                 GINAC_ASSERT((bp->flags) & status_flags::dynallocated);
263                 GINAC_ASSERT(bp->refcount==1);
264         }
265 }
266         
267 void ex::construct_from_uint(unsigned int i)
268 {
269         switch (i) {  // some tiny efficiency-hack
270         case 0:
271                 bp = _ex0().bp;
272                 ++bp->refcount;
273                 break;
274         case 1:
275                 bp = _ex1().bp;
276                 ++bp->refcount;
277                 break;
278         case 2:
279                 bp = _ex2().bp;
280                 ++bp->refcount;
281                 break;
282         default:
283                 bp = new numeric(i);
284                 bp->setflag(status_flags::dynallocated);
285                 ++bp->refcount;
286                 GINAC_ASSERT((bp->flags) & status_flags::dynallocated);
287                 GINAC_ASSERT(bp->refcount==1);
288         }
289 }
290         
291 void ex::construct_from_long(long i)
292 {
293         switch (i) {  // some tiny efficiency-hack
294         case -2:
295                 bp = _ex_2().bp;
296                 ++bp->refcount;
297                 break;
298         case -1:
299                 bp = _ex_1().bp;
300                 ++bp->refcount;
301                 break;
302         case 0:
303                 bp = _ex0().bp;
304                 ++bp->refcount;
305                 break;
306         case 1:
307                 bp = _ex1().bp;
308                 ++bp->refcount;
309                 break;
310         case 2:
311                 bp = _ex2().bp;
312                 ++bp->refcount;
313                 break;
314         default:
315                 bp = new numeric(i);
316                 bp->setflag(status_flags::dynallocated);
317                 ++bp->refcount;
318                 GINAC_ASSERT((bp->flags) & status_flags::dynallocated);
319                 GINAC_ASSERT(bp->refcount==1);
320         }
321 }
322         
323 void ex::construct_from_ulong(unsigned long i)
324 {
325         switch (i) {  // some tiny efficiency-hack
326         case 0:
327                 bp = _ex0().bp;
328                 ++bp->refcount;
329                 break;
330         case 1:
331                 bp = _ex1().bp;
332                 ++bp->refcount;
333                 break;
334         case 2:
335                 bp = _ex2().bp;
336                 ++bp->refcount;
337                 break;
338         default:
339                 bp = new numeric(i);
340                 bp->setflag(status_flags::dynallocated);
341                 ++bp->refcount;
342                 GINAC_ASSERT((bp->flags) & status_flags::dynallocated);
343                 GINAC_ASSERT(bp->refcount==1);
344         }
345 }
346         
347 void ex::construct_from_double(double d)
348 {
349         bp = new numeric(d);
350         bp->setflag(status_flags::dynallocated);
351         ++bp->refcount;
352         GINAC_ASSERT((bp->flags) & status_flags::dynallocated);
353         GINAC_ASSERT(bp->refcount==1);
354 }
355
356 void ex::construct_from_string_and_lst(const std::string &s, const ex &l)
357 {
358         set_lexer_string(s);
359         set_lexer_symbols(l);
360         ginac_yyrestart(NULL);
361         if (ginac_yyparse())
362                 throw (std::runtime_error(get_parser_error()));
363         else {
364                 bp = parsed_ex.bp;
365                 GINAC_ASSERT(bp!=0);
366                 GINAC_ASSERT((bp->flags) & status_flags::dynallocated);
367                 ++bp->refcount;
368         }
369 }
370         
371 //////////
372 // static member variables
373 //////////
374
375 // none
376
377 //////////
378 // functions which are not member functions
379 //////////
380
381 // none
382
383 //////////
384 // global functions
385 //////////
386
387 // none
388
389
390 } // namespace GiNaC