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

Contents of /ginac/clifford.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.5 - (hide annotations)
Wed Nov 17 16:57:58 1999 UTC (13 years, 6 months ago) by cbauer
Branch: MAIN
Changes since 1.4: +9 -4 lines
File MIME type: text/plain
- put everything in "GiNaC" namespace
- converted some macros into inline functions
- split debugmsg.h into assertion.h (public) and debugmsg.h (private)

1 cbauer 1.1 /** @file clifford.h
2     *
3 cbauer 1.4 * Interface to GiNaC's clifford objects. */
4    
5     /*
6 cbauer 1.2 * GiNaC Copyright (C) 1999 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 cbauer 1.1
23 cbauer 1.2 #ifndef __GINAC_CLIFFORD_H__
24     #define __GINAC_CLIFFORD_H__
25 cbauer 1.1
26     #include <string>
27 cbauer 1.3 #include <ginac/indexed.h>
28 cbauer 1.5 #include <ginac/ex.h>
29    
30     namespace GiNaC {
31 cbauer 1.1
32     /** Base class for clifford object */
33     class clifford : public indexed
34     {
35     // member functions
36    
37     // default constructor, destructor, copy constructor assignment operator and helpers
38     public:
39     clifford();
40     ~clifford();
41     clifford(clifford const & other);
42     clifford const & operator=(clifford const & other);
43     protected:
44     void copy(clifford const & other);
45     void destroy(bool call_parent);
46    
47     // other constructors
48     public:
49     explicit clifford(string const & initname);
50    
51     // functions overriding virtual functions from base classes
52     public:
53     basic * duplicate() const;
54     void printraw(ostream & os) const;
55     void printtree(ostream & os, unsigned indent) const;
56     void print(ostream & os, unsigned upper_precedence=0) const;
57     void printcsrc(ostream & os, unsigned type, unsigned upper_precedence=0) const;
58     bool info(unsigned inf) const;
59     protected:
60     int compare_same_type(basic const & other) const;
61     ex simplify_ncmul(exvector const & v) const;
62     unsigned calchash(void) const;
63    
64     // new virtual functions which can be overridden by derived classes
65     // none
66    
67     // non-virtual functions in this class
68     public:
69     void setname(string const & n);
70     private:
71     string & autoname_prefix(void);
72    
73     // member variables
74    
75     protected:
76     string name;
77     unsigned serial; // unique serial number for comparision
78     private:
79     static unsigned next_serial;
80     };
81    
82     // global constants
83    
84     extern const clifford some_clifford;
85     extern type_info const & typeid_clifford;
86    
87 cbauer 1.5 // utility functions
88     inline const clifford &ex_to_clifford(const ex &e)
89     {
90     return static_cast<const clifford &>(*e.bp);
91     }
92 cbauer 1.1
93 cbauer 1.5 } // namespace GiNaC
94 cbauer 1.1
95 cbauer 1.2 #endif // ndef __GINAC_CLIFFORD_H__

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