X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Ffderivative.cpp;h=452e07e4399164b04980b3d4d2f7d3c22592b6e6;hp=296e2939b64c9ffba8cf0865a1d5b1d6a697f1c4;hb=114449ae6f2cd3151d9b8342c570db021a9e892c;hpb=da64e515abf7243bc4c84ca3631470931c4e6691 diff --git a/ginac/fderivative.cpp b/ginac/fderivative.cpp index 296e2939..452e07e4 100644 --- a/ginac/fderivative.cpp +++ b/ginac/fderivative.cpp @@ -3,7 +3,7 @@ * Implementation of abstract derivatives of functions. */ /* - * GiNaC Copyright (C) 1999-2005 Johannes Gutenberg University Mainz, Germany + * GiNaC Copyright (C) 1999-2008 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 @@ -31,6 +31,7 @@ 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,7 @@ GINAC_IMPLEMENT_REGISTERED_CLASS_OPT(fderivative, function, fderivative::fderivative() { - tinfo_key = TINFO_fderivative; + tinfo_key = &fderivative::tinfo_static; } ////////// @@ -49,17 +50,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, std::auto_ptr vp) : function(ser, vp), parameter_set(params) { - tinfo_key = TINFO_fderivative; + tinfo_key = &fderivative::tinfo_static; } ////////// @@ -106,12 +107,24 @@ 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() << " " @@ -214,7 +227,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