]> www.ginac.de Git - ginac.git/blob - ginac/relational.h
removed a lot of superfluous const_cast<>()s
[ginac.git] / ginac / relational.h
1 /** @file relational.h
2  *
3  *  Interface to relations between 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_RELATIONAL_H__
24 #define __GINAC_RELATIONAL_H__
25
26 #include "basic.h"
27 #include "ex.h"
28
29 namespace GiNaC {
30
31 /** This class holds a relation consisting of two expressions and a logical
32  *  relation between them. */
33 class relational : public basic
34 {
35         GINAC_DECLARE_REGISTERED_CLASS(relational, basic)
36
37 // types
38 public:
39         enum operators {
40                 equal,
41                 not_equal,
42                 less,
43                 less_or_equal,
44                 greater,
45                 greater_or_equal
46         };
47         
48         // other ctors
49 public:
50         relational(const ex & lhs, const ex & rhs, operators oper=equal);
51         
52         // functions overriding virtual functions from bases classes
53 public:
54         void print(const print_context & c, unsigned level = 0) const;
55         unsigned precedence(void) const {return 20;}
56         bool info(unsigned inf) const;
57         unsigned nops() const;
58         ex & let_op(int i);
59         ex eval(int level=0) const;
60         ex simplify_ncmul(const exvector & v) const;
61 protected:
62         unsigned return_type(void) const;
63         unsigned return_type_tinfo(void) const;
64
65         // new virtual functions which can be overridden by derived classes
66 public:
67         virtual ex lhs(void) const;
68         virtual ex rhs(void) const;
69
70         // non-virtual functions in this class
71 public:
72         operator bool(void) const;
73         
74 // member variables
75         
76 protected:
77         ex lh;
78         ex rh;
79         operators o;
80 };
81
82 // utility functions
83
84 /** Return the relational object handled by an ex.  Deprecated: use ex_to<relational>().
85  *  This is unsafe: you need to check the type first. */
86 inline const relational &ex_to_relational(const ex &e)
87 {
88         return static_cast<const relational &>(*e.bp);
89 }
90
91 /** Specialization of is_exactly_a<relational>(obj) for relational objects. */
92 template<> inline bool is_exactly_a<relational>(const basic & obj)
93 {
94         return obj.tinfo()==TINFO_relational;
95 }
96
97 } // namespace GiNaC
98
99 #endif // ndef __GINAC_RELATIONAL_H__