X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?a=blobdiff_plain;f=ginac%2Fnumeric.h;h=188883159942e3fde1e96c9d6f8f9d9d7b08677f;hb=45117431cb040d1e334257bee2924ef6f6a55759;hp=a4f4447bd09facaabdbb749e8657c18b96ee7555;hpb=5ef801553eb39aed7bd2df9dd1aff9d752c3ea9d;p=ginac.git diff --git a/ginac/numeric.h b/ginac/numeric.h index a4f4447b..18888315 100644 --- a/ginac/numeric.h +++ b/ginac/numeric.h @@ -3,7 +3,7 @@ * Makes the interface to the underlying bignum package available. */ /* - * GiNaC Copyright (C) 1999-2003 Johannes Gutenberg University Mainz, Germany + * GiNaC Copyright (C) 1999-2005 Johannes Gutenberg University Mainz, Germany * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -17,7 +17,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #ifndef __GINAC_NUMERIC_H__ @@ -28,9 +28,7 @@ #include -#include -// forward decln of cln::cl_N, since cln/complex_class.h is not included: -namespace cln { class cl_N; } +#include #if defined(G__CINTVERSION) && !defined(__MAKECINT__) // Cint @$#$! doesn't like forward declaring classes used for casting operators @@ -95,7 +93,6 @@ public: // functions overriding virtual functions from base classes public: - void print(const print_context & c, unsigned level = 0) const; unsigned precedence() const {return 30;} bool info(unsigned inf) const; int degree(const ex & s) const; @@ -105,12 +102,13 @@ public: ex eval(int level = 0) const; ex evalf(int level = 0) const; ex subs(const exmap & m, unsigned options = 0) const { return subs_one_level(m, options); } // overwrites basic::subs() for performance reasons - ex normal(exmap & repl, int level = 0) const; - ex to_rational(lst &repl_lst) const; - ex to_polynomial(lst &repl_lst) const; + ex normal(exmap & repl, exmap & rev_lookup, int level = 0) const; + ex to_rational(exmap & repl) const; + ex to_polynomial(exmap & repl) const; numeric integer_content() const; ex smod(const numeric &xi) const; numeric max_coefficient() const; + ex conjugate() const; protected: /** Implementation of ex::diff for a numeric always returns 0. * @see ex::diff */ @@ -174,10 +172,19 @@ public: // converting routines for interfacing with CLN: numeric(const cln::cl_N &z); +protected: + void print_numeric(const print_context & c, const char *par_open, const char *par_close, const char *imag_sym, const char *mul_sym, unsigned level) const; + void do_print(const print_context & c, unsigned level) const; + void do_print_latex(const print_latex & c, unsigned level) const; + void do_print_csrc(const print_csrc & c, unsigned level) const; + void do_print_csrc_cl_N(const print_csrc_cl_N & c, unsigned level) const; + void do_print_tree(const print_tree & c, unsigned level) const; + void do_print_python_repr(const print_python_repr & c, unsigned level) const; + // member variables protected: - cln::cl_number value; + cln::cl_N value; };