]> www.ginac.de Git - ginac.git/blobdiff - ginac/container.pl
- diff() is now only defined on classes ex and basic, where it handles
[ginac.git] / ginac / container.pl
index a66df7b9e93b864ab5bbd09e999b235bc507f719..3a7f9bd81e5d784bd1db33a9d9daf65c1f7606b4 100755 (executable)
@@ -189,7 +189,7 @@ public:
     ex eval(int level=0) const;
     ex evalf(int level=0) const;
     ex normal(lst &sym_lst, lst &repl_lst, int level=0) const;
-    ex diff(const symbol & s) const;
+    ex derivative(const symbol & s) const;
     ex subs(const lst & ls, const lst & lr) const;
 protected:
     int compare_same_type(const basic & other) const;
@@ -634,7 +634,7 @@ ex ${CONTAINER}::normal(lst &sym_lst, lst &repl_lst, int level) const
     return n.bp->basic::normal(sym_lst,repl_lst,level);
 }
 
-ex ${CONTAINER}::diff(const symbol & s) const
+ex ${CONTAINER}::derivative(const symbol & s) const
 {
     return this${CONTAINER}(diffchildren(s));
 }