X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Ffderivative.cpp;h=48a8e75fecd7f448279743d642dde17cee761266;hp=1c766996c8b8ae1f1f806e2982dd392302b983bf;hb=619d77d2676f7f1a562fb9fefc0ba6754fe2d750;hpb=b4be7b0f30fbb6178cf4ee83e1b3952e084bd8ca diff --git a/ginac/fderivative.cpp b/ginac/fderivative.cpp index 1c766996..48a8e75f 100644 --- a/ginac/fderivative.cpp +++ b/ginac/fderivative.cpp @@ -3,7 +3,7 @@ * Implementation of abstract derivatives of functions. */ /* - * GiNaC Copyright (C) 1999-2003 Johannes Gutenberg University Mainz, Germany + * GiNaC Copyright (C) 1999-2007 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 */ #include @@ -39,7 +39,7 @@ GINAC_IMPLEMENT_REGISTERED_CLASS_OPT(fderivative, function, fderivative::fderivative() { - tinfo_key = TINFO_fderivative; + tinfo_key = &fderivative::tinfo_static; } ////////// @@ -49,17 +49,17 @@ fderivative::fderivative() fderivative::fderivative(unsigned ser, unsigned param, const exvector & args) : function(ser, args) { parameter_set.insert(param); - tinfo_key = TINFO_fderivative; + tinfo_key = &fderivative::tinfo_static; } fderivative::fderivative(unsigned ser, const paramset & params, const exvector & args) : function(ser, args), parameter_set(params) { - tinfo_key = TINFO_fderivative; + tinfo_key = &fderivative::tinfo_static; } -fderivative::fderivative(unsigned ser, const paramset & params, exvector * vp) : function(ser, vp), parameter_set(params) +fderivative::fderivative(unsigned ser, const paramset & params, std::auto_ptr vp) : function(ser, vp), parameter_set(params) { - tinfo_key = TINFO_fderivative; + tinfo_key = &fderivative::tinfo_static; } ////////// @@ -95,6 +95,12 @@ DEFAULT_UNARCHIVE(fderivative) // functions overriding virtual functions from base classes ////////// +void fderivative::print(const print_context & c, unsigned level) const +{ + // class function overrides print(), but we don't want that + basic::print(c, level); +} + void fderivative::do_print(const print_context & c, unsigned level) const { c.s << "D["; @@ -109,7 +115,7 @@ void fderivative::do_print(const print_context & c, unsigned level) const void fderivative::do_print_tree(const print_tree & c, unsigned level) const { c.s << std::string(level, ' ') << class_name() << " " - << registered_functions()[serial].name + << registered_functions()[serial].name << " @" << this << std::hex << ", hash=0x" << hashvalue << ", flags=0x" << flags << std::dec << ", nops=" << nops() << ", params="; @@ -160,7 +166,7 @@ ex fderivative::thiscontainer(const exvector & v) const return fderivative(serial, parameter_set, v); } -ex fderivative::thiscontainer(exvector * vp) const +ex fderivative::thiscontainer(std::auto_ptr vp) const { return fderivative(serial, parameter_set, vp); } @@ -208,7 +214,7 @@ bool fderivative::match_same_type(const basic & other) const GINAC_ASSERT(is_a(other)); const fderivative & o = static_cast(other); - return parameter_set == o.parameter_set; + return parameter_set == o.parameter_set && inherited::match_same_type(other); } } // namespace GiNaC