X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?a=blobdiff_plain;f=ginac%2Fnumeric.h;h=9f7c76446fc2670c867f954a8e2c75a7fb0df4f1;hb=09f0415b7442714ea9adae30872d151452185962;hp=33498f3a532b3e34da01be8c2179fa3ad0d59b00;hpb=68fdf425abf14d016d5f95ee7b9d06a19a3c5926;p=ginac.git diff --git a/ginac/numeric.h b/ginac/numeric.h index 33498f3a..9f7c7644 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-2004 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 @@ -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; @@ -104,13 +101,14 @@ public: bool has(const ex &other) const; ex eval(int level = 0) const; ex evalf(int level = 0) const; - ex subs(const lst & ls, const lst & lr, unsigned options = 0) const { return subs_one_level(ls, lr, options); } // overwrites basic::subs() for performance reasons - ex normal(lst &sym_lst, lst &repl_lst, int level = 0) const; - ex to_rational(lst &repl_lst) const; - ex to_polynomial(lst &repl_lst) 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, 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; };