X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Ffderivative.cpp;h=e33ec963c4299ec701f53d7e2bc9c4627a598abc;hp=cefa165d6e59d9e0ffe882789252dc3dea2066fa;hb=def23d34c68a383ce3d7da0227b984c8291a3bf9;hpb=cfea748404dec5fb2f2e3310d36eeb6640f13824 diff --git a/ginac/fderivative.cpp b/ginac/fderivative.cpp index cefa165d..e33ec963 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,17 +20,21 @@ * 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 "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 ctor, dtor, copy ctor, assignment operator and helpers +// default constructor ////////// fderivative::fderivative() @@ -38,14 +42,6 @@ fderivative::fderivative() tinfo_key = TINFO_fderivative; } -void fderivative::copy(const fderivative & other) -{ - inherited::copy(other); - parameter_set = other.parameter_set; -} - -DEFAULT_DESTROY(fderivative) - ////////// // other constructors ////////// @@ -61,7 +57,7 @@ fderivative::fderivative(unsigned ser, const paramset & params, const exvector & tinfo_key = TINFO_fderivative; } -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; } @@ -70,7 +66,7 @@ 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) { unsigned i = 0; while (true) { @@ -99,35 +95,32 @@ DEFAULT_UNARCHIVE(fderivative) // functions overriding virtual functions from base classes ////////// -void fderivative::print(const print_context & c, unsigned level) const -{ - 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 vp) const { return fderivative(serial, parameter_set, vp); } @@ -177,7 +170,7 @@ ex fderivative::thisexprseq(exvector * vp) const ex fderivative::derivative(const symbol & s) const { ex result; - for (unsigned i=0; i!=seq.size(); i++) { + for (size_t i=0; i