X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Ffderivative.h;h=d7a70c258c1e76d1ac63eb151b81f1282a004674;hp=91146e0e6ae8a547e9841ab634b12120c1cc5708;hb=0289100f425e420da988a709cd52616b6d69d348;hpb=3ac17e18ada69428fe170c10abcc5f33a30f0676 diff --git a/ginac/fderivative.h b/ginac/fderivative.h index 91146e0e..d7a70c25 100644 --- a/ginac/fderivative.h +++ b/ginac/fderivative.h @@ -3,7 +3,7 @@ * Interface to abstract derivatives of functions. */ /* - * GiNaC Copyright (C) 1999-2006 Johannes Gutenberg University Mainz, Germany + * GiNaC Copyright (C) 1999-2011 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,15 +20,14 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef __GINAC_FDERIVATIVE_H__ -#define __GINAC_FDERIVATIVE_H__ - -#include +#ifndef GINAC_FDERIVATIVE_H +#define GINAC_FDERIVATIVE_H #include "function.h" -namespace GiNaC { +#include +namespace GiNaC { typedef std::multiset paramset; @@ -66,6 +65,8 @@ public: ex series(const relational & r, int order, unsigned options = 0) const; ex thiscontainer(const exvector & v) const; ex thiscontainer(std::auto_ptr vp) const; + void archive(archive_node& n) const; + void read_archive(const archive_node& n, lst& syms); protected: ex derivative(const symbol & s) const; bool is_equal_same_type(const basic & other) const; @@ -74,13 +75,15 @@ protected: // non-virtual functions in this class protected: void do_print(const print_context & c, unsigned level) const; + void do_print_csrc(const print_csrc & c, unsigned level) const; void do_print_tree(const print_tree & c, unsigned level) const; // member variables protected: paramset parameter_set; /**< Set of parameter numbers with respect to which to take the derivative */ }; +GINAC_DECLARE_UNARCHIVER(fderivative); } // namespace GiNaC -#endif // ndef __GINAC_DERIVATIVE_H__ +#endif // ndef GINAC_DERIVATIVE_H