]> www.ginac.de Git - ginac.git/blob - ginac/expairseq.h
- Added some tests from the Lewis-Wester testsuite.
[ginac.git] / ginac / expairseq.h
1 /** @file expairseq.h
2  *
3  *  Interface to sequences of expression pairs. */
4
5 /*
6  *  GiNaC Copyright (C) 1999-2000 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_EXPAIRSEQ_H__
24 #define __GINAC_EXPAIRSEQ_H__
25
26 #include <vector>
27 #include <list>
28
29 // CINT needs <algorithm> to work properly with <vector> and <list>
30 //#include <algorithm>
31
32 #include "expair.h"
33
34 #ifndef NO_NAMESPACE_GINAC
35 namespace GiNaC {
36 #endif // ndef NO_NAMESPACE_GINAC
37
38 //#define EXPAIRSEQ_USE_HASHTAB
39
40 typedef vector<expair> epvector;
41 typedef epvector::iterator epviter;
42
43 inline void iter_swap(epvector::iterator it1, epvector::iterator it2)
44 {
45     (*it1).rest.swap((*it2).rest);
46     (*it1).coeff.swap((*it2).coeff);
47 }
48
49 typedef epvector::iterator epp;
50 typedef list<epp> epplist;
51 typedef vector<epplist> epplistvector;
52
53 /** A sequence of class expair.
54  *  This is used for time-critical classes like sums and products of terms
55  *  since handling a list of coeff and rest is much faster than handling a
56  *  list of products or powers, respectively. (Incidentally, Maple does it
57  *  the same way.) */
58 class expairseq : public basic
59 {
60     GINAC_DECLARE_REGISTERED_CLASS(expairseq, basic)
61
62 // member functions
63
64     // default constructor, destructor, copy constructor assignment operator and helpers
65 public:
66     expairseq() : basic(TINFO_expairseq)
67 #ifdef EXPAIRSEQ_USE_HASHTAB
68         , hashtabsize(0)
69 #endif // def EXPAIRSEQ_USE_HASHTAB
70         {
71         }
72     ~expairseq()
73         {
74             destroy(0);
75         }
76     expairseq(const expairseq & other);
77     const expairseq & operator=(const expairseq & other);
78 protected:
79     void copy(const expairseq & other);
80     void destroy(bool call_parent)
81         {
82             if (call_parent) basic::destroy(call_parent);
83         };
84
85     // other constructors
86 public:
87     expairseq(const ex & lh, const ex & rh);
88     expairseq(const exvector & v);
89     expairseq(const epvector & v, const ex & oc);
90     expairseq(epvector * vp, const ex & oc); // vp will be deleted
91
92     // functions overriding virtual functions from bases classes
93 public:
94     basic * duplicate() const;
95     void print(ostream & os, unsigned upper_precedence=0) const;
96     void printraw(ostream & os) const;
97     void printtree(ostream & os, unsigned indent) const;
98     bool info(unsigned inf) const;
99     unsigned nops() const;
100     ex op(int i) const;
101     ex & let_op(int i);
102     ex eval(int level=0) const;
103     ex evalf(int level=0) const;
104     ex normal(lst &sym_lst, lst &repl_lst, int level=0) const;
105     ex subs(const lst & ls, const lst & lr) const;
106 protected:
107     ex derivative(const symbol & s) const;
108     int compare_same_type(const basic & other) const;
109     bool is_equal_same_type(const basic & other) const;
110     unsigned return_type(void) const;
111     unsigned calchash(void) const;
112     ex expand(unsigned options=0) const;
113
114     // new virtual functions which can be overridden by derived classes
115 protected:
116     virtual ex thisexpairseq(const epvector & v, const ex & oc) const;
117     virtual ex thisexpairseq(epvector * vp, const ex & oc) const;
118     virtual void printseq(ostream & os, char delim, unsigned this_precedence,
119                           unsigned upper_precedence) const;
120     virtual void printpair(ostream & os, const expair & p,
121                            unsigned upper_precedence) const;
122     virtual expair split_ex_to_pair(const ex & e) const;
123     virtual expair combine_ex_with_coeff_to_pair(const ex & e,
124                                                  const ex & c) const;
125     virtual expair combine_pair_with_coeff_to_pair(const expair & p,
126                                                    const ex & c) const;
127     virtual ex recombine_pair_to_ex(const expair & p) const;
128     virtual bool expair_needs_further_processing(epp it);
129     virtual ex default_overall_coeff(void) const;
130     virtual void combine_overall_coeff(const ex & c);
131     virtual void combine_overall_coeff(const ex & c1, const ex & c2);
132     virtual bool can_make_flat(const expair & p) const;
133     
134     // non-virtual functions in this class
135 protected:
136     void construct_from_2_ex_via_exvector(const ex & lh, const ex & rh);
137     void construct_from_2_ex(const ex & lh, const ex & rh);
138     void construct_from_2_expairseq(const expairseq & s1,
139                                     const expairseq & s2);
140     void construct_from_expairseq_ex(const expairseq & s,
141                                      const ex & e);
142     void construct_from_exvector(const exvector & v);
143     void construct_from_epvector(const epvector & v);
144     void make_flat(const exvector & v);
145     void make_flat(const epvector & v);
146     epvector * bubblesort(epvector::iterator itbegin, epvector::iterator itend);
147     epvector * mergesort(epvector::iterator itbegin, epvector::iterator itend);
148     void canonicalize(void);
149     void combine_same_terms_sorted_seq(void);
150 #ifdef EXPAIRSEQ_USE_HASHTAB
151     void combine_same_terms(void);
152     unsigned calc_hashtabsize(unsigned sz) const;
153     unsigned calc_hashindex(const ex & e) const;
154     void shrink_hashtab(void);
155     void remove_hashtab_entry(epvector::const_iterator element);
156     void move_hashtab_entry(epvector::const_iterator oldpos,
157                             epvector::iterator newpos);
158     void sorted_insert(epplist & eppl, epp elem);
159     void build_hashtab_and_combine(epvector::iterator & first_numeric,
160                                    epvector::iterator & last_non_zero,
161                                    vector<bool> & touched,
162                                    unsigned & number_of_zeroes);
163     void drop_coeff_0_terms(epvector::iterator & first_numeric,
164                             epvector::iterator & last_non_zero,
165                             vector<bool> & touched,
166                             unsigned & number_of_zeroes);
167     bool has_coeff_0(void) const;
168     void add_numerics_to_hashtab(epvector::iterator first_numeric,
169                                  epvector::const_iterator last_non_zero);
170 #endif // def EXPAIRSEQ_USE_HASHTAB
171     bool is_canonical() const;
172     epvector * expandchildren(unsigned options) const;
173     epvector * evalchildren(int level) const;
174     epvector evalfchildren(int level) const;
175     epvector normalchildren(int level) const;
176     epvector diffchildren(const symbol & s) const;
177     epvector * subschildren(const lst & ls, const lst & lr) const;
178     
179 // member variables
180     
181 protected:
182     epvector seq;
183     ex overall_coeff;
184     static unsigned precedence;
185 #ifdef EXPAIRSEQ_USE_HASHTAB
186     epplistvector hashtab;
187     unsigned hashtabsize;
188     unsigned hashmask;
189     static unsigned maxhashtabsize;
190     static unsigned minhashtabsize;
191     static unsigned hashtabfactor;
192 #endif // def EXPAIRSEQ_USE_HASHTAB
193 };
194
195 // global constants
196
197 extern const expairseq some_expairseq;
198 extern const type_info & typeid_expairseq;
199
200 // utility functions
201 inline const expairseq &ex_to_expairseq(const ex &e)
202 {
203         return static_cast<const expairseq &>(*e.bp);
204 }
205
206 #ifndef NO_NAMESPACE_GINAC
207 } // namespace GiNaC
208 #endif // ndef NO_NAMESPACE_GINAC
209
210 #endif // ndef __GINAC_EXPAIRSEQ_H__