]> www.ginac.de Git - ginac.git/blob - ginac/constant.h
- info(info_flags::has_indices) now works for sums and products. It
[ginac.git] / ginac / constant.h
1 /** @file constant.h
2  *
3  *  Interface to GiNaC's constant types and some special constants. */
4
5 /*
6  *  GiNaC Copyright (C) 1999-2007 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_CONSTANT_H__
24 #define __GINAC_CONSTANT_H__
25
26 #include <string>
27 #include "basic.h"
28 #include "ex.h"
29
30 namespace GiNaC {
31
32 typedef ex (*evalffunctype)();
33         
34 /** This class holds constants, symbols with specific numerical value. Each
35  *  object of this class must either provide their own function to evaluate it
36  *  to class numeric or provide the constant as a numeric (if it's an exact
37  *  number). */
38 class constant : public basic
39 {
40         GINAC_DECLARE_REGISTERED_CLASS(constant, basic)
41         
42 // member functions
43         
44         // other constructors
45 public:
46         constant(const std::string & initname, evalffunctype efun = 0, const std::string & texname = std::string(), unsigned domain = domain::complex);
47         constant(const std::string & initname, const numeric & initnumber, const std::string & texname = std::string(), unsigned domain = domain::complex);
48         
49         // functions overriding virtual functions from base classes
50 public:
51         bool info(unsigned inf) const;
52         ex evalf(int level = 0) const;
53         bool is_polynomial(const ex & var) const;
54         ex conjugate() const;
55         ex real_part() const;
56         ex imag_part() const;
57 protected:
58         ex derivative(const symbol & s) const;
59         bool is_equal_same_type(const basic & other) const;
60         unsigned calchash() const;
61         
62         // non-virtual functions in this class
63 protected:
64         void do_print(const print_context & c, unsigned level) const;
65         void do_print_tree(const print_tree & c, unsigned level) const;
66         void do_print_latex(const print_latex & c, unsigned level) const;
67         void do_print_python_repr(const print_python_repr & c, unsigned level) const;
68
69 // member variables
70 private:
71         std::string name;     ///< printname of this constant
72         std::string TeX_name; ///< LaTeX name
73         evalffunctype ef;
74         ex number;            ///< numerical value this constant evalf()s to
75         unsigned serial;      ///< unique serial number for comparison
76         static unsigned next_serial;
77         unsigned domain;      ///< numerical value this constant evalf()s to
78 };
79
80 extern const constant Pi;
81 extern const constant Catalan;
82 extern const constant Euler;
83
84 } // namespace GiNaC
85
86 #endif // ndef __GINAC_CONSTANT_H__