/[GiNaC]/ginac/ncmul.h
ViewVC logotype

Contents of /ginac/ncmul.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.28 - (show annotations)
Sat May 19 17:37:45 2001 UTC (12 years, 1 month ago) by cbauer
Branch: MAIN
Changes since 1.27: +1 -5 lines
File MIME type: text/plain
replaced "precedence" static member variable by virtual precedence() function

1 /** @file ncmul.h
2 *
3 * Interface to GiNaC's non-commutative products of expressions. */
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_NCMUL_H__
24 #define __GINAC_NCMUL_H__
25
26 #include "exprseq.h"
27
28 namespace GiNaC {
29
30 /** Non-commutative product of expressions. */
31 class ncmul : public exprseq
32 {
33 GINAC_DECLARE_REGISTERED_CLASS(ncmul, exprseq)
34
35 friend class power;
36 friend ex nonsimplified_ncmul(const exvector & v);
37 friend ex simplified_ncmul(const exvector & v);
38
39 // member functions
40
41 // other constructors
42 public:
43 ncmul(const ex & lh, const ex & rh);
44 ncmul(const ex & f1, const ex & f2, const ex & f3);
45 ncmul(const ex & f1, const ex & f2, const ex & f3,
46 const ex & f4);
47 ncmul(const ex & f1, const ex & f2, const ex & f3,
48 const ex & f4, const ex & f5);
49 ncmul(const ex & f1, const ex & f2, const ex & f3,
50 const ex & f4, const ex & f5, const ex & f6);
51 ncmul(const exvector & v, bool discardable=false);
52 ncmul(exvector * vp); // vp will be deleted
53
54 // functions overriding virtual functions from bases classes
55 public:
56 void print(const print_context & c, unsigned level = 0) const;
57 unsigned precedence(void) const {return 50;}
58 bool info(unsigned inf) const;
59 int degree(const ex & s) const;
60 int ldegree(const ex & s) const;
61 ex expand(unsigned options=0) const;
62 ex coeff(const ex & s, int n=1) const;
63 ex eval(int level=0) const;
64 exvector get_free_indices(void) const;
65 ex thisexprseq(const exvector & v) const;
66 ex thisexprseq(exvector * vp) const;
67 protected:
68 ex derivative(const symbol & s) const;
69 unsigned return_type(void) const;
70 unsigned return_type_tinfo(void) const;
71
72 // new virtual functions which can be overridden by derived classes
73 // none
74
75 // non-virtual functions in this class
76 protected:
77 unsigned count_factors(const ex & e) const;
78 void append_factors(exvector & v, const ex & e) const;
79 exvector expandchildren(unsigned options) const;
80 public:
81 const exvector & get_factors(void) const;
82 };
83
84 // friend funtions
85
86 ex nonsimplified_ncmul(const exvector & v);
87 ex simplified_ncmul(const exvector & v);
88
89 // utility functions
90 inline const ncmul &ex_to_ncmul(const ex &e)
91 {
92 return static_cast <const ncmul &>(*e.bp);
93 }
94
95 } // namespace GiNaC
96
97 #endif // ndef __GINAC_NCMUL_H__

Christian Bauer">Christian Bauer
ViewVC Help
Powered by ViewVC 1.1.15