X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Ffderivative.cpp;h=d2ebc15c34cf680e012b88bd1c730c112fc3fcb7;hp=23fc83768ef4801464b15146e188df621ca52375;hb=13896261ee985f23e5b5648532e70f0cce704ede;hpb=d448856f20cb58f939ddbf636e7f72e3599b1468 diff --git a/ginac/fderivative.cpp b/ginac/fderivative.cpp index 23fc8376..d2ebc15c 100644 --- a/ginac/fderivative.cpp +++ b/ginac/fderivative.cpp @@ -3,7 +3,7 @@ * Implementation of abstract derivatives of functions. */ /* - * GiNaC Copyright (C) 1999-2001 Johannes Gutenberg University Mainz, Germany + * GiNaC Copyright (C) 1999-2003 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 @@ -20,54 +20,45 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ +#include + #include "fderivative.h" -#include "print.h" +#include "operators.h" #include "archive.h" -#include "debugmsg.h" #include "utils.h" namespace GiNaC { -GINAC_IMPLEMENT_REGISTERED_CLASS(fderivative, function) +GINAC_IMPLEMENT_REGISTERED_CLASS_OPT(fderivative, function, + print_func(&fderivative::do_print). + print_func(&fderivative::do_print_tree)) ////////// -// default constructor, destructor, copy constructor assignment operator and helpers +// default constructor ////////// fderivative::fderivative() { - debugmsg("fderivative default constructor", LOGLEVEL_CONSTRUCT); tinfo_key = TINFO_fderivative; } -void fderivative::copy(const fderivative & other) -{ - inherited::copy(other); - parameter_set = other.parameter_set; -} - -DEFAULT_DESTROY(fderivative) - ////////// // other constructors ////////// fderivative::fderivative(unsigned ser, unsigned param, const exvector & args) : function(ser, args) { - debugmsg("fderivative constructor from unsigned,unsigned,exvector", LOGLEVEL_CONSTRUCT); parameter_set.insert(param); tinfo_key = TINFO_fderivative; } fderivative::fderivative(unsigned ser, const paramset & params, const exvector & args) : function(ser, args), parameter_set(params) { - debugmsg("fderivative constructor from unsigned,paramset,exvector", LOGLEVEL_CONSTRUCT); tinfo_key = TINFO_fderivative; } fderivative::fderivative(unsigned ser, const paramset & params, exvector * vp) : function(ser, vp), parameter_set(params) { - debugmsg("fderivative constructor from unsigned,paramset,exvector *", LOGLEVEL_CONSTRUCT); tinfo_key = TINFO_fderivative; } @@ -75,9 +66,8 @@ fderivative::fderivative(unsigned ser, const paramset & params, exvector * vp) : // archiving ////////// -fderivative::fderivative(const archive_node &n, const lst &sym_lst) : inherited(n, sym_lst) +fderivative::fderivative(const archive_node &n, lst &sym_lst) : inherited(n, sym_lst) { - debugmsg("fderivative constructor from archive_node", LOGLEVEL_CONSTRUCT); unsigned i = 0; while (true) { unsigned u; @@ -85,7 +75,7 @@ fderivative::fderivative(const archive_node &n, const lst &sym_lst) : inherited( parameter_set.insert(u); else break; - i++; + ++i; } } @@ -105,37 +95,32 @@ DEFAULT_UNARCHIVE(fderivative) // functions overriding virtual functions from base classes ////////// -void fderivative::print(const print_context & c, unsigned level) const -{ - debugmsg("fderivative print", LOGLEVEL_PRINT); - - if (is_a(c)) { - - c.s << std::string(level, ' ') << class_name() << " " - << registered_functions()[serial].name - << std::hex << ", hash=0x" << hashvalue << ", flags=0x" << flags << std::dec - << ", nops=" << nops() - << ", params="; - paramset::const_iterator i = parameter_set.begin(), end = parameter_set.end(); - --end; - while (i != end) - c.s << *i++ << ","; - c.s << *i << std::endl; - unsigned delta_indent = static_cast(c).delta_indent; - for (unsigned i=0; i