X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Ffderivative.cpp;h=81e2566da363726d3f45f8df4d8b03406187f02d;hp=e33ec963c4299ec701f53d7e2bc9c4627a598abc;hb=67edef78ce992a8f6ad704bfac228b8dec6eacd2;hpb=6d7bf9ee5a7ce05cb3a23dae664e781d7325d7b8 diff --git a/ginac/fderivative.cpp b/ginac/fderivative.cpp index e33ec963..81e2566d 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-2010 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,20 +17,21 @@ * * 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 - #include "fderivative.h" #include "operators.h" #include "archive.h" #include "utils.h" +#include + namespace GiNaC { GINAC_IMPLEMENT_REGISTERED_CLASS_OPT(fderivative, function, print_func(&fderivative::do_print). + print_func(&fderivative::do_print_csrc). print_func(&fderivative::do_print_tree)) ////////// @@ -39,7 +40,6 @@ GINAC_IMPLEMENT_REGISTERED_CLASS_OPT(fderivative, function, fderivative::fderivative() { - tinfo_key = TINFO_fderivative; } ////////// @@ -49,25 +49,23 @@ fderivative::fderivative() fderivative::fderivative(unsigned ser, unsigned param, const exvector & args) : function(ser, args) { parameter_set.insert(param); - tinfo_key = TINFO_fderivative; } fderivative::fderivative(unsigned ser, const paramset & params, const exvector & args) : function(ser, args), parameter_set(params) { - tinfo_key = TINFO_fderivative; } fderivative::fderivative(unsigned ser, const paramset & params, std::auto_ptr vp) : function(ser, vp), parameter_set(params) { - tinfo_key = TINFO_fderivative; } ////////// // 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; @@ -78,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 { @@ -89,23 +88,40 @@ void fderivative::archive(archive_node &n) const } } -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["; paramset::const_iterator i = parameter_set.begin(), end = parameter_set.end(); --end; - while (i != end) + while (i != end) { c.s << *i++ << ","; + } c.s << *i << "](" << registered_functions()[serial].name << ")"; printseq(c, '(', ',', ')', exprseq::precedence(), function::precedence()); } +void fderivative::do_print_csrc(const print_csrc & c, unsigned level) const +{ + c.s << "D_"; + paramset::const_iterator i = parameter_set.begin(), end = parameter_set.end(); + --end; + while (i != end) + c.s << *i++ << "_"; + c.s << *i << "_" << registered_functions()[serial].name; + printseq(c, '(', ',', ')', exprseq::precedence(), function::precedence()); +} + void fderivative::do_print_tree(const print_tree & c, unsigned level) const { c.s << std::string(level, ' ') << class_name() << " " @@ -208,7 +224,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