3 * Interface to relations between expressions. */
6 * GiNaC Copyright (C) 1999-2001 Johannes Gutenberg University Mainz, Germany
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.
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.
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
23 #ifndef __GINAC_RELATIONAL_H__
24 #define __GINAC_RELATIONAL_H__
29 #ifndef NO_NAMESPACE_GINAC
31 #endif // ndef NO_NAMESPACE_GINAC
33 /** This class holds a relation consisting of two expressions and a logical
34 * relation between them. */
35 class relational : public basic
37 GINAC_DECLARE_REGISTERED_CLASS(relational, basic)
52 relational(const ex & lhs, const ex & rhs, operators oper=equal);
54 // functions overriding virtual functions from bases classes
56 void print(std::ostream & os, unsigned upper_precedence=0) const;
57 void printraw(std::ostream & os) const;
58 void printcsrc(std::ostream & os, unsigned type, unsigned upper_precedence=0) const;
59 bool info(unsigned inf) const;
60 unsigned nops() const;
62 ex eval(int level=0) const;
63 ex evalf(int level=0) const;
64 ex normal(lst &sym_lst, lst &repl_lst, int level=0) const;
65 ex simplify_ncmul(const exvector & v) const;
67 unsigned return_type(void) const;
68 unsigned return_type_tinfo(void) const;
70 // new virtual functions which can be overridden by derived classes
72 virtual ex lhs(void) const;
73 virtual ex rhs(void) const;
75 // non-virtual functions in this class
77 operator bool(void) const;
85 static unsigned precedence;
89 inline const relational &ex_to_relational(const ex &e)
91 return static_cast<const relational &>(*e.bp);
94 #ifndef NO_NAMESPACE_GINAC
96 #endif // ndef NO_NAMESPACE_GINAC
98 #endif // ndef __GINAC_RELATIONAL_H__