]> www.ginac.de Git - ginac.git/blob - ginac/expairseq.h
d9d7bf0530ecf6f78ef294f90be03fba848e63d2
[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 <ginac/expair.h>
33
34 #ifndef NO_GINAC_NAMESPACE
35 namespace GiNaC {
36 #endif // ndef NO_GINAC_NAMESPACE
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(expairseq const & other);
77     expairseq const & operator=(expairseq const & other);
78 protected:
79     void copy(expairseq const & 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(ex const & lh, ex const & rh);
88     expairseq(exvector const & v);
89     expairseq(epvector const & v, ex const & oc);
90     expairseq(epvector * vp, ex const & 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 const i) const;
101     ex & let_op(int const 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 diff(symbol const & s) const;
106     ex subs(lst const & ls, lst const & lr) const;
107 protected:
108     int compare_same_type(basic const & other) const;
109     bool is_equal_same_type(basic const & 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(epvector const & v, ex const & oc) const;
117     virtual ex thisexpairseq(epvector * vp, ex const & oc) const;
118     virtual void printseq(ostream & os, char delim, unsigned this_precedence,
119                           unsigned upper_precedence) const;
120     virtual void printpair(ostream & os, expair const & p,
121                            unsigned upper_precedence) const;
122     virtual expair split_ex_to_pair(ex const & e) const;
123     virtual expair combine_ex_with_coeff_to_pair(ex const & e,
124                                                  ex const & c) const;
125     virtual expair combine_pair_with_coeff_to_pair(expair const & p,
126                                                    ex const & c) const;
127     virtual ex recombine_pair_to_ex(expair const & 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(ex const & c);
131     virtual void combine_overall_coeff(ex const & c1, ex const & c2);
132     virtual bool can_make_flat(expair const & p) const;
133     
134     // non-virtual functions in this class
135 protected:
136     void construct_from_2_ex_via_exvector(ex const & lh, ex const & rh);
137     void construct_from_2_ex(ex const & lh, ex const & rh);
138     void construct_from_2_expairseq(expairseq const & s1,
139                                     expairseq const & s2);
140     void construct_from_expairseq_ex(expairseq const & s,
141                                      ex const & e);
142     void construct_from_exvector(exvector const & v);
143     void construct_from_epvector(epvector const & v);
144     void make_flat(exvector const & v);
145     void make_flat(epvector const & 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(ex const & 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,                                              epvector::const_iterator last_non_zero);
169 #endif // def EXPAIRSEQ_USE_HASHTAB
170     bool is_canonical() const;
171     epvector * expandchildren(unsigned options) const;
172     epvector * evalchildren(int level) const;
173     epvector evalfchildren(int level) const;
174     epvector normalchildren(int level) const;
175     epvector diffchildren(symbol const & s) const;
176     epvector * subschildren(lst const & ls, lst const & lr) const;
177     
178 // member variables
179     
180 protected:
181     epvector seq;
182     ex overall_coeff;
183     static unsigned precedence;
184 #ifdef EXPAIRSEQ_USE_HASHTAB
185     epplistvector hashtab;
186     unsigned hashtabsize;
187     unsigned hashmask;
188     static unsigned maxhashtabsize;
189     static unsigned minhashtabsize;
190     static unsigned hashtabfactor;
191 #endif // def EXPAIRSEQ_USE_HASHTAB
192 };
193
194 // global constants
195
196 extern const expairseq some_expairseq;
197 extern type_info const & typeid_expairseq;
198
199 // utility functions
200 inline const expairseq &ex_to_expairseq(const ex &e)
201 {
202         return static_cast<const expairseq &>(*e.bp);
203 }
204
205 #ifndef NO_GINAC_NAMESPACE
206 } // namespace GiNaC
207 #endif // ndef NO_GINAC_NAMESPACE
208
209 #endif // ndef __GINAC_EXPAIRSEQ_H__