X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Ffderivative.cpp;h=ae73eb489421f524bb0ed5c2d8928620a7d29438;hp=452e07e4399164b04980b3d4d2f7d3c22592b6e6;hb=55c9e750f7d9dd94e7cb15ae43752da9a402973a;hpb=83a7ee99a947cbbf331018b803ad6be43a9ccd45 diff --git a/ginac/fderivative.cpp b/ginac/fderivative.cpp index 452e07e4..ae73eb48 100644 --- a/ginac/fderivative.cpp +++ b/ginac/fderivative.cpp @@ -3,7 +3,7 @@ * Implementation of abstract derivatives of functions. */ /* - * GiNaC Copyright (C) 1999-2008 Johannes Gutenberg University Mainz, Germany + * GiNaC Copyright (C) 1999-2009 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,13 +20,13 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#include - #include "fderivative.h" #include "operators.h" #include "archive.h" #include "utils.h" +#include + namespace GiNaC { GINAC_IMPLEMENT_REGISTERED_CLASS_OPT(fderivative, function, @@ -40,7 +40,6 @@ GINAC_IMPLEMENT_REGISTERED_CLASS_OPT(fderivative, function, fderivative::fderivative() { - tinfo_key = &fderivative::tinfo_static; } ////////// @@ -50,25 +49,23 @@ fderivative::fderivative() fderivative::fderivative(unsigned ser, unsigned param, const exvector & args) : function(ser, args) { parameter_set.insert(param); - tinfo_key = &fderivative::tinfo_static; } fderivative::fderivative(unsigned ser, const paramset & params, const exvector & args) : function(ser, args), parameter_set(params) { - tinfo_key = &fderivative::tinfo_static; } fderivative::fderivative(unsigned ser, const paramset & params, std::auto_ptr vp) : function(ser, vp), parameter_set(params) { - tinfo_key = &fderivative::tinfo_static; } ////////// // archiving ////////// -fderivative::fderivative(const archive_node &n, lst &sym_lst) : inherited(n, sym_lst) +void fderivative::read_archive(const archive_node& n, lst& sym_lst) { + inherited::read_archive(n, sym_lst); unsigned i = 0; while (true) { unsigned u; @@ -79,6 +76,7 @@ fderivative::fderivative(const archive_node &n, lst &sym_lst) : inherited(n, sym ++i; } } +GINAC_BIND_UNARCHIVER(fderivative); void fderivative::archive(archive_node &n) const { @@ -90,7 +88,6 @@ void fderivative::archive(archive_node &n) const } } -DEFAULT_UNARCHIVE(fderivative) ////////// // functions overriding virtual functions from base classes