X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Ffderivative.h;h=a6765aea29e4d8c7af14fdcfb1a1fde56c01f53c;hp=b57662296c0d37ba51c0f404d2a2aa02907153b7;hb=4f87021ee5736f9bd9571dfbe455cf02a380c7d2;hpb=e7cc6a764ff67b5885d6633385fac23ccc1dc9a7 diff --git a/ginac/fderivative.h b/ginac/fderivative.h index b5766229..a6765aea 100644 --- a/ginac/fderivative.h +++ b/ginac/fderivative.h @@ -3,7 +3,7 @@ * Interface to abstract derivatives of functions. */ /* - * GiNaC Copyright (C) 1999-2002 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_FDERIVATIVE_H__ @@ -56,7 +56,7 @@ public: fderivative(unsigned ser, const paramset & params, const exvector & args); // internal constructors - fderivative(unsigned ser, const paramset & params, exvector * vp); // vp will be deleted + fderivative(unsigned ser, const paramset & params, std::auto_ptr vp); // functions overriding virtual functions from base classes public: @@ -64,13 +64,18 @@ public: ex eval(int level = 0) const; ex evalf(int level = 0) const; ex series(const relational & r, int order, unsigned options = 0) const; - ex thisexprseq(const exvector & v) const; - ex thisexprseq(exvector * vp) const; + ex thiscontainer(const exvector & v) const; + ex thiscontainer(std::auto_ptr vp) const; protected: ex derivative(const symbol & s) const; bool is_equal_same_type(const basic & other) const; bool match_same_type(const basic & other) const; + // non-virtual functions in this class +protected: + void do_print(const print_context & c, unsigned level) const; + void do_print_tree(const print_tree & c, unsigned level) const; + // member variables protected: paramset parameter_set; /**< Set of parameter numbers with respect to which to take the derivative */