]> www.ginac.de Git - ginac.git/blob - ginac/container.h
Added posibility to make map_functions out of members.
[ginac.git] / ginac / container.h
1 /** @file container.h
2  *
3  *  Wrapper template for making GiNaC classes out of STL containers. */
4
5 /*
6  *  GiNaC Copyright (C) 1999-2006 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_CONTAINER_H__
24 #define __GINAC_CONTAINER_H__
25
26 #include <iterator>
27 #include <stdexcept>
28 #include <algorithm>
29 #include <vector>
30 #include <list>
31 #include <memory>
32
33 #include "ex.h"
34 #include "print.h"
35 #include "archive.h"
36 #include "assertion.h"
37
38 namespace GiNaC {
39
40
41 /** Helper template for encapsulating the reserve() mechanics of STL containers. */
42 template <template <class> class C>
43 class container_storage {
44 protected:
45         typedef C<ex> STLT;
46
47         container_storage() {}
48         container_storage(size_t n, const ex & e) : seq(n, e) {}
49
50         template <class In>
51         container_storage(In b, In e) : seq(b, e) {}
52
53         void reserve(size_t) {}
54         static void reserve(STLT &, size_t) {}
55
56         STLT seq;
57
58         // disallow destruction of container through a container_storage*
59 protected:
60         ~container_storage() {}
61 };
62
63 template <>
64 inline void container_storage<std::vector>::reserve(size_t n) { seq.reserve(n); }
65
66 template <>
67 inline void container_storage<std::vector>::reserve(std::vector<ex> & v, size_t n) { v.reserve(n); }
68
69
70 /** Helper template to allow initialization of containers via an overloaded
71  *  comma operator (idea stolen from Blitz++). */
72 template <typename T, typename STLT>
73 class container_init {
74 public:
75         container_init(STLT & s) : stlt(s) {}
76
77         container_init<T, STLT> operator,(const T & x)
78         {
79                 stlt.push_back(x);
80                 return container_init<T, STLT>(stlt);
81         }
82
83         // The following specializations produce much tighter code than the
84         // general case above
85
86         container_init<T, STLT> operator,(int x)
87         {
88                 stlt.push_back(x);
89                 return container_init<T, STLT>(stlt);
90         }
91
92         container_init<T, STLT> operator,(unsigned int x)
93         {
94                 stlt.push_back(x);
95                 return container_init<T, STLT>(stlt);
96         }
97
98         container_init<T, STLT> operator,(long x)
99         {
100                 stlt.push_back(x);
101                 return container_init<T, STLT>(stlt);
102         }
103
104         container_init<T, STLT> operator,(unsigned long x)
105         {
106                 stlt.push_back(x);
107                 return container_init<T, STLT>(stlt);
108         }
109
110         container_init<T, STLT> operator,(double x)
111         {
112                 stlt.push_back(x);
113                 return container_init<T, STLT>(stlt);
114         }
115
116         container_init<T, STLT> operator,(const symbol & x)
117         {
118                 stlt.push_back(T(x));
119                 return container_init<T, STLT>(stlt);
120         }
121
122 private:
123         container_init();
124         STLT & stlt;
125 };
126
127 /** Wrapper template for making GiNaC classes out of STL containers. */
128 template <template <class> class C>
129 class container : public basic, public container_storage<C> {
130         GINAC_DECLARE_REGISTERED_CLASS(container, basic)
131
132         typedef typename container_storage<C>::STLT STLT;
133
134 public:
135         typedef typename STLT::const_iterator const_iterator;
136         typedef typename STLT::const_reverse_iterator const_reverse_iterator;
137
138 protected:
139         // helpers
140         static tinfo_t get_tinfo() { return NULL; }
141         static unsigned get_default_flags() { return 0; }
142         static char get_open_delim() { return '('; }
143         static char get_close_delim() { return ')'; }
144
145         // constructors
146 public:
147         container(STLT const & s, bool discardable = false) : inherited(get_tinfo())
148         {
149                 setflag(get_default_flags());
150
151                 if (discardable)
152                         this->seq.swap(const_cast<STLT &>(s));
153                 else
154                         this->seq = s;
155         }
156
157         explicit container(std::auto_ptr<STLT> vp) : inherited(get_tinfo())
158         {
159                 setflag(get_default_flags());
160                 this->seq.swap(*vp);
161         }
162
163         container(exvector::const_iterator b, exvector::const_iterator e)
164          : inherited(get_tinfo()), container_storage<C>(b, e)
165         {
166                 setflag(get_default_flags());
167         }
168
169         explicit container(const ex & p1)
170          : inherited(get_tinfo()), container_storage<C>(1, p1)
171         {
172                 setflag(get_default_flags());
173         }
174
175         container(const ex & p1, const ex & p2) : inherited(get_tinfo())
176         {
177                 setflag(get_default_flags());
178                 reserve(this->seq, 2);
179                 this->seq.push_back(p1); this->seq.push_back(p2);
180         }
181
182         container(const ex & p1, const ex & p2, const ex & p3) : inherited(get_tinfo())
183         {
184                 setflag(get_default_flags());
185                 reserve(this->seq, 3);
186                 this->seq.push_back(p1); this->seq.push_back(p2); this->seq.push_back(p3);
187         }
188
189         container(const ex & p1, const ex & p2, const ex & p3,
190                   const ex & p4) : inherited(get_tinfo())
191         {
192                 setflag(get_default_flags());
193                 reserve(this->seq, 4);
194                 this->seq.push_back(p1); this->seq.push_back(p2); this->seq.push_back(p3);
195                 this->seq.push_back(p4);
196         }
197
198         container(const ex & p1, const ex & p2, const ex & p3,
199                   const ex & p4, const ex & p5) : inherited(get_tinfo())
200         {
201                 setflag(get_default_flags());
202                 reserve(this->seq, 5);
203                 this->seq.push_back(p1); this->seq.push_back(p2); this->seq.push_back(p3);
204                 this->seq.push_back(p4); this->seq.push_back(p5);
205         }
206
207         container(const ex & p1, const ex & p2, const ex & p3,
208                   const ex & p4, const ex & p5, const ex & p6) : inherited(get_tinfo())
209         {
210                 setflag(get_default_flags());
211                 reserve(this->seq, 6);
212                 this->seq.push_back(p1); this->seq.push_back(p2); this->seq.push_back(p3);
213                 this->seq.push_back(p4); this->seq.push_back(p5); this->seq.push_back(p6);
214         }
215
216         container(const ex & p1, const ex & p2, const ex & p3,
217                   const ex & p4, const ex & p5, const ex & p6,
218                   const ex & p7) : inherited(get_tinfo())
219         {
220                 setflag(get_default_flags());
221                 reserve(this->seq, 7);
222                 this->seq.push_back(p1); this->seq.push_back(p2); this->seq.push_back(p3);
223                 this->seq.push_back(p4); this->seq.push_back(p5); this->seq.push_back(p6);
224                 this->seq.push_back(p7);
225         }
226
227         container(const ex & p1, const ex & p2, const ex & p3,
228                   const ex & p4, const ex & p5, const ex & p6,
229                   const ex & p7, const ex & p8) : inherited(get_tinfo())
230         {
231                 setflag(get_default_flags());
232                 reserve(this->seq, 8);
233                 this->seq.push_back(p1); this->seq.push_back(p2); this->seq.push_back(p3);
234                 this->seq.push_back(p4); this->seq.push_back(p5); this->seq.push_back(p6);
235                 this->seq.push_back(p7); this->seq.push_back(p8);
236         }
237
238         container(const ex & p1, const ex & p2, const ex & p3,
239                   const ex & p4, const ex & p5, const ex & p6,
240                   const ex & p7, const ex & p8, const ex & p9) : inherited(get_tinfo())
241         {
242                 setflag(get_default_flags());
243                 reserve(this->seq, 9);
244                 this->seq.push_back(p1); this->seq.push_back(p2); this->seq.push_back(p3);
245                 this->seq.push_back(p4); this->seq.push_back(p5); this->seq.push_back(p6);
246                 this->seq.push_back(p7); this->seq.push_back(p8); this->seq.push_back(p9);
247         }
248
249         container(const ex & p1, const ex & p2, const ex & p3,
250                   const ex & p4, const ex & p5, const ex & p6,
251                   const ex & p7, const ex & p8, const ex & p9,
252                   const ex & p10) : inherited(get_tinfo())
253         {
254                 setflag(get_default_flags());
255                 reserve(this->seq, 10);
256                 this->seq.push_back(p1); this->seq.push_back(p2); this->seq.push_back(p3);
257                 this->seq.push_back(p4); this->seq.push_back(p5); this->seq.push_back(p6);
258                 this->seq.push_back(p7); this->seq.push_back(p8); this->seq.push_back(p9);
259                 this->seq.push_back(p10);
260         }
261
262         container(const ex & p1, const ex & p2, const ex & p3,
263                   const ex & p4, const ex & p5, const ex & p6,
264                   const ex & p7, const ex & p8, const ex & p9,
265                   const ex & p10, const ex & p11) : inherited(get_tinfo())
266         {
267                 setflag(get_default_flags());
268                 reserve(this->seq, 11);
269                 this->seq.push_back(p1); this->seq.push_back(p2); this->seq.push_back(p3);
270                 this->seq.push_back(p4); this->seq.push_back(p5); this->seq.push_back(p6);
271                 this->seq.push_back(p7); this->seq.push_back(p8); this->seq.push_back(p9);
272                 this->seq.push_back(p10); this->seq.push_back(p11);
273         }
274
275         container(const ex & p1, const ex & p2, const ex & p3,
276                   const ex & p4, const ex & p5, const ex & p6,
277                   const ex & p7, const ex & p8, const ex & p9,
278                   const ex & p10, const ex & p11, const ex & p12) : inherited(get_tinfo())
279         {
280                 setflag(get_default_flags());
281                 reserve(this->seq, 12);
282                 this->seq.push_back(p1); this->seq.push_back(p2); this->seq.push_back(p3);
283                 this->seq.push_back(p4); this->seq.push_back(p5); this->seq.push_back(p6);
284                 this->seq.push_back(p7); this->seq.push_back(p8); this->seq.push_back(p9);
285                 this->seq.push_back(p10); this->seq.push_back(p11); this->seq.push_back(p12);
286         }
287
288         container(const ex & p1, const ex & p2, const ex & p3,
289                   const ex & p4, const ex & p5, const ex & p6,
290                   const ex & p7, const ex & p8, const ex & p9,
291                   const ex & p10, const ex & p11, const ex & p12,
292                   const ex & p13) : inherited(get_tinfo())
293         {
294                 setflag(get_default_flags());
295                 reserve(this->seq, 13);
296                 this->seq.push_back(p1); this->seq.push_back(p2); this->seq.push_back(p3);
297                 this->seq.push_back(p4); this->seq.push_back(p5); this->seq.push_back(p6);
298                 this->seq.push_back(p7); this->seq.push_back(p8); this->seq.push_back(p9);
299                 this->seq.push_back(p10); this->seq.push_back(p11); this->seq.push_back(p12);
300                 this->seq.push_back(p13);
301         }
302
303         container(const ex & p1, const ex & p2, const ex & p3,
304                   const ex & p4, const ex & p5, const ex & p6,
305                   const ex & p7, const ex & p8, const ex & p9,
306                   const ex & p10, const ex & p11, const ex & p12,
307                   const ex & p13, const ex & p14) : inherited(get_tinfo())
308         {
309                 setflag(get_default_flags());
310                 reserve(this->seq, 14);
311                 this->seq.push_back(p1); this->seq.push_back(p2); this->seq.push_back(p3);
312                 this->seq.push_back(p4); this->seq.push_back(p5); this->seq.push_back(p6);
313                 this->seq.push_back(p7); this->seq.push_back(p8); this->seq.push_back(p9);
314                 this->seq.push_back(p10); this->seq.push_back(p11); this->seq.push_back(p12);
315                 this->seq.push_back(p13); this->seq.push_back(p14);
316         }
317
318         container(const ex & p1, const ex & p2, const ex & p3,
319                   const ex & p4, const ex & p5, const ex & p6,
320                   const ex & p7, const ex & p8, const ex & p9,
321                   const ex & p10, const ex & p11, const ex & p12,
322                   const ex & p13, const ex & p14, const ex & p15) : inherited(get_tinfo())
323         {
324                 setflag(get_default_flags());
325                 reserve(this->seq, 15);
326                 this->seq.push_back(p1); this->seq.push_back(p2); this->seq.push_back(p3);
327                 this->seq.push_back(p4); this->seq.push_back(p5); this->seq.push_back(p6);
328                 this->seq.push_back(p7); this->seq.push_back(p8); this->seq.push_back(p9);
329                 this->seq.push_back(p10); this->seq.push_back(p11); this->seq.push_back(p12);
330                 this->seq.push_back(p13); this->seq.push_back(p14); this->seq.push_back(p15);
331         }
332
333         container(const ex & p1, const ex & p2, const ex & p3,
334                   const ex & p4, const ex & p5, const ex & p6,
335                   const ex & p7, const ex & p8, const ex & p9,
336                   const ex & p10, const ex & p11, const ex & p12,
337                   const ex & p13, const ex & p14, const ex & p15,
338                   const ex & p16) : inherited(get_tinfo())
339         {
340                 setflag(get_default_flags());
341                 reserve(this->seq, 16);
342                 this->seq.push_back(p1); this->seq.push_back(p2); this->seq.push_back(p3);
343                 this->seq.push_back(p4); this->seq.push_back(p5); this->seq.push_back(p6);
344                 this->seq.push_back(p7); this->seq.push_back(p8); this->seq.push_back(p9);
345                 this->seq.push_back(p10); this->seq.push_back(p11); this->seq.push_back(p12);
346                 this->seq.push_back(p13); this->seq.push_back(p14); this->seq.push_back(p15);
347                 this->seq.push_back(p16);
348         }
349
350         // First step of initialization of container with a comma-separated
351         // sequence of expressions. Subsequent steps are handled by
352         // container_init<>::operator,().
353         container_init<ex, STLT> operator=(const ex & x)
354         {
355                 this->seq.push_back(x);
356                 return container_init<ex, STLT>(this->seq);
357         }
358
359         // functions overriding virtual functions from base classes
360 public:
361         bool info(unsigned inf) const { return inherited::info(inf); }
362         unsigned precedence() const { return 10; }
363         size_t nops() const { return this->seq.size(); }
364         ex op(size_t i) const;
365         ex & let_op(size_t i);
366         ex eval(int level = 0) const;
367         ex subs(const exmap & m, unsigned options = 0) const;
368
369 protected:
370         ex conjugate() const
371         {
372                 STLT *newcont = NULL;
373                 for (const_iterator i=this->seq.begin(); i!=this->seq.end(); ++i) {
374                         if (newcont) {
375                                 newcont->push_back(i->conjugate());
376                                 continue;
377                         }
378                         ex x = i->conjugate();
379                         if (are_ex_trivially_equal(x, *i)) {
380                                 continue;
381                         }
382                         newcont = new STLT;
383                         reserve(*newcont, this->seq.size());
384                         for (const_iterator j=this->seq.begin(); j!=i; ++j) {
385                                 newcont->push_back(*j);
386                         }
387                         newcont->push_back(x);
388                 }
389                 if (newcont) {
390                         ex result = thiscontainer(*newcont);
391                         delete newcont;
392                         return result;
393                 }
394                 return *this;
395         }
396
397         ex real_part() const
398         {
399                 STLT cont;
400                 reserve(cont, nops());
401                 const_iterator b = begin();
402                 const_iterator e = end();
403                 for(const_iterator i=b; i!=e; ++i)
404                         cont.push_back(i->real_part());
405                 return thiscontainer(cont);
406         }
407
408         ex imag_part() const
409         {
410                 STLT cont;
411                 reserve(cont, nops());
412                 const_iterator b = begin();
413                 const_iterator e = end();
414                 for(const_iterator i=b; i!=e; ++i)
415                         cont.push_back(i->imag_part());
416                 return thiscontainer(cont);
417         }
418
419         bool is_equal_same_type(const basic & other) const;
420
421         // new virtual functions which can be overridden by derived classes
422 protected:
423         /** Similar to duplicate(), but with a preset sequence. Must be
424          *  overridden by derived classes. */
425         virtual ex thiscontainer(const STLT & v) const { return container(v); }
426
427         /** Similar to duplicate(), but with a preset sequence (which gets
428          *  deleted). Must be overridden by derived classes. */
429         virtual ex thiscontainer(std::auto_ptr<STLT> vp) const { return container(vp); }
430
431         virtual void printseq(const print_context & c, char openbracket, char delim,
432                               char closebracket, unsigned this_precedence,
433                               unsigned upper_precedence = 0) const;
434
435         // non-virtual functions in this class
436 private:
437         void sort_(std::random_access_iterator_tag)
438         {
439                 std::sort(this->seq.begin(), this->seq.end(), ex_is_less());
440         }
441
442         void sort_(std::input_iterator_tag)
443         {
444                 this->seq.sort(ex_is_less());
445         }
446
447         void unique_()
448         {
449                 typename STLT::iterator p = std::unique(this->seq.begin(), this->seq.end(), ex_is_equal());
450                 this->seq.erase(p, this->seq.end());
451         }
452
453 public:
454         container & prepend(const ex & b);
455         container & append(const ex & b);
456         container & remove_first();
457         container & remove_last();
458         container & remove_all();
459         container & sort();
460         container & unique();
461
462         const_iterator begin() const {return this->seq.begin();}
463         const_iterator end() const {return this->seq.end();}
464         const_reverse_iterator rbegin() const {return this->seq.rbegin();}
465         const_reverse_iterator rend() const {return this->seq.rend();}
466
467 protected:
468         void do_print(const print_context & c, unsigned level) const;
469         void do_print_tree(const print_tree & c, unsigned level) const;
470         void do_print_python(const print_python & c, unsigned level) const;
471         void do_print_python_repr(const print_python_repr & c, unsigned level) const;
472         STLT evalchildren(int level) const;
473         std::auto_ptr<STLT> subschildren(const exmap & m, unsigned options = 0) const;
474 };
475
476 /** Default constructor */
477 template <template <class> class C>
478 container<C>::container() : inherited(get_tinfo())
479 {
480         setflag(get_default_flags());
481 }
482
483 /** Construct object from archive_node. */
484 template <template <class> class C>
485 container<C>::container(const archive_node &n, lst &sym_lst) : inherited(n, sym_lst)
486 {
487         setflag(get_default_flags());
488
489         for (unsigned int i=0; true; i++) {
490                 ex e;
491                 if (n.find_ex("seq", e, sym_lst, i))
492                         this->seq.push_back(e);
493                 else
494                         break;
495         }
496 }
497
498 /** Unarchive the object. */
499 template <template <class> class C>
500 ex container<C>::unarchive(const archive_node &n, lst &sym_lst)
501 {
502         return (new container(n, sym_lst))->setflag(status_flags::dynallocated);
503 }
504
505 /** Archive the object. */
506 template <template <class> class C>
507 void container<C>::archive(archive_node &n) const
508 {
509         inherited::archive(n);
510         const_iterator i = this->seq.begin(), end = this->seq.end();
511         while (i != end) {
512                 n.add_ex("seq", *i);
513                 ++i;
514         }
515 }
516
517 template <template <class> class C>
518 void container<C>::do_print(const print_context & c, unsigned level) const
519 {
520         // always print brackets around seq, ignore upper_precedence
521         printseq(c, get_open_delim(), ',', get_close_delim(), precedence(), precedence()+1);
522 }
523
524 template <template <class> class C>
525 void container<C>::do_print_tree(const print_tree & c, unsigned level) const
526 {
527         c.s << std::string(level, ' ') << class_name() << " @" << this
528             << std::hex << ", hash=0x" << hashvalue << ", flags=0x" << flags << std::dec
529             << ", nops=" << nops()
530             << std::endl;
531         const_iterator i = this->seq.begin(), end = this->seq.end();
532         while (i != end) {
533                 i->print(c, level + c.delta_indent);
534                 ++i;
535         }
536         c.s << std::string(level + c.delta_indent,' ') << "=====" << std::endl;
537 }
538
539 template <template <class> class C>
540 void container<C>::do_print_python(const print_python & c, unsigned level) const
541 {
542         printseq(c, '[', ',', ']', precedence(), precedence()+1);
543 }
544
545 template <template <class> class C>
546 void container<C>::do_print_python_repr(const print_python_repr & c, unsigned level) const
547 {
548         c.s << class_name();
549         printseq(c, '(', ',', ')', precedence(), precedence()+1);
550 }
551
552 template <template <class> class C>
553 ex container<C>::op(size_t i) const
554 {
555         GINAC_ASSERT(i < nops());
556
557         const_iterator it = this->seq.begin();
558         advance(it, i);
559         return *it;
560 }
561
562 template <template <class> class C>
563 ex & container<C>::let_op(size_t i)
564 {
565         GINAC_ASSERT(i < nops());
566
567         ensure_if_modifiable();
568         typename STLT::iterator it = this->seq.begin();
569         advance(it, i);
570         return *it;
571 }
572
573 template <template <class> class C>
574 ex container<C>::eval(int level) const
575 {
576         if (level == 1)
577                 return hold();
578         else
579                 return thiscontainer(evalchildren(level));
580 }
581
582 template <template <class> class C>
583 ex container<C>::subs(const exmap & m, unsigned options) const
584 {
585         std::auto_ptr<STLT> vp = subschildren(m, options);
586         if (vp.get())
587                 return ex_to<basic>(thiscontainer(vp)).subs_one_level(m, options);
588         else
589                 return subs_one_level(m, options);
590 }
591
592 /** Compare two containers of the same type. */
593 template <template <class> class C>
594 int container<C>::compare_same_type(const basic & other) const
595 {
596         GINAC_ASSERT(is_a<container>(other));
597         const container & o = static_cast<const container &>(other);
598
599         const_iterator it1 = this->seq.begin(), it1end = this->seq.end(),
600                        it2 = o.seq.begin(), it2end = o.seq.end();
601
602         while (it1 != it1end && it2 != it2end) {
603                 int cmpval = it1->compare(*it2);
604                 if (cmpval)
605                         return cmpval;
606                 ++it1; ++it2;
607         }
608
609         return (it1 == it1end) ? (it2 == it2end ? 0 : -1) : 1;
610 }
611
612 template <template <class> class C>
613 bool container<C>::is_equal_same_type(const basic & other) const
614 {
615         GINAC_ASSERT(is_a<container>(other));
616         const container & o = static_cast<const container &>(other);
617
618         if (this->seq.size() != o.seq.size())
619                 return false;
620
621         const_iterator it1 = this->seq.begin(), it1end = this->seq.end(), it2 = o.seq.begin();
622         while (it1 != it1end) {
623                 if (!it1->is_equal(*it2))
624                         return false;
625                 ++it1; ++it2;
626         }
627
628         return true;
629 }
630
631 /** Add element at front. */
632 template <template <class> class C>
633 container<C> & container<C>::prepend(const ex & b)
634 {
635         ensure_if_modifiable();
636         this->seq.push_front(b);
637         return *this;
638 }
639
640 /** Add element at back. */
641 template <template <class> class C>
642 container<C> & container<C>::append(const ex & b)
643 {
644         ensure_if_modifiable();
645         this->seq.push_back(b);
646         return *this;
647 }
648
649 /** Remove first element. */
650 template <template <class> class C>
651 container<C> & container<C>::remove_first()
652 {
653         ensure_if_modifiable();
654         this->seq.pop_front();
655         return *this;
656 }
657
658 /** Remove last element. */
659 template <template <class> class C>
660 container<C> & container<C>::remove_last()
661 {
662         ensure_if_modifiable();
663         this->seq.pop_back();
664         return *this;
665 }
666
667 /** Remove all elements. */
668 template <template <class> class C>
669 container<C> & container<C>::remove_all()
670 {
671         ensure_if_modifiable();
672         this->seq.clear();
673         return *this;
674 }
675
676 /** Sort elements. */
677 template <template <class> class C>
678 container<C> & container<C>::sort()
679 {
680         ensure_if_modifiable();
681         sort_(typename std::iterator_traits<typename STLT::iterator>::iterator_category());
682         return *this;
683 }
684
685 /** Specialization of container::unique_() for std::list. */
686 template<> inline void container<std::list>::unique_()
687 {
688         this->seq.unique(ex_is_equal());
689 }
690
691 /** Remove adjacent duplicate elements. */
692 template <template <class> class C>
693 container<C> & container<C>::unique()
694 {
695         ensure_if_modifiable();
696         unique_();
697         return *this;
698 }
699
700 /** Print sequence of contained elements. */
701 template <template <class> class C>
702 void container<C>::printseq(const print_context & c, char openbracket, char delim,
703                             char closebracket, unsigned this_precedence,
704                             unsigned upper_precedence) const
705 {
706         if (this_precedence <= upper_precedence)
707                 c.s << openbracket;
708
709         if (!this->seq.empty()) {
710                 const_iterator it = this->seq.begin(), itend = this->seq.end();
711                 --itend;
712                 while (it != itend) {
713                         it->print(c, this_precedence);
714                         c.s << delim;
715                         ++it;
716                 }
717                 it->print(c, this_precedence);
718         }
719
720         if (this_precedence <= upper_precedence)
721                 c.s << closebracket;
722 }
723
724 template <template <class> class C>
725 typename container<C>::STLT container<C>::evalchildren(int level) const
726 {
727         if (level == 1)
728                 return this->seq;
729         else if (level == -max_recursion_level)
730                 throw std::runtime_error("max recursion level reached");
731
732         STLT s;
733         reserve(s, this->seq.size());
734
735         --level;
736         const_iterator it = this->seq.begin(), itend = this->seq.end();
737         while (it != itend) {
738                 s.push_back(it->eval(level));
739                 ++it;
740         }
741
742         return s;
743 }
744
745 template <template <class> class C>
746 std::auto_ptr<typename container<C>::STLT> container<C>::subschildren(const exmap & m, unsigned options) const
747 {
748         // returns a NULL pointer if nothing had to be substituted
749         // returns a pointer to a newly created STLT otherwise
750         // (and relinquishes responsibility for the STLT)
751
752         const_iterator cit = this->seq.begin(), end = this->seq.end();
753         while (cit != end) {
754                 const ex & subsed_ex = cit->subs(m, options);
755                 if (!are_ex_trivially_equal(*cit, subsed_ex)) {
756
757                         // copy first part of seq which hasn't changed
758                         std::auto_ptr<STLT> s(new STLT(this->seq.begin(), cit));
759                         reserve(*s, this->seq.size());
760
761                         // insert changed element
762                         s->push_back(subsed_ex);
763                         ++cit;
764
765                         // copy rest
766                         while (cit != end) {
767                                 s->push_back(cit->subs(m, options));
768                                 ++cit;
769                         }
770
771                         return s;
772                 }
773
774                 ++cit;
775         }
776         
777         return std::auto_ptr<STLT>(0); // nothing has changed
778 }
779
780 } // namespace GiNaC
781
782 #endif // ndef __GINAC_CONTAINER_H__