]> www.ginac.de Git - ginac.git/blobdiff - ginac/power.cpp
- Instead of just totally symmetric or antisymmetric, complex symmetries
[ginac.git] / ginac / power.cpp
index eefd438f9bb334415694e313bf0018e0bae48df7..8996625fb2b4c01d065fe358fdb21b96b157c1fb 100644 (file)
@@ -30,7 +30,7 @@
 #include "mul.h"
 #include "ncmul.h"
 #include "numeric.h"
-#include "inifcns.h"
+#include "inifcns.h" // for log() in power::derivative()
 #include "matrix.h"
 #include "symbol.h"
 #include "print.h"
@@ -242,7 +242,7 @@ ex & power::let_op(int i)
        return i==0 ? basis : exponent;
 }
 
-ex power::map(map_func f) const
+ex power::map(map_function & f) const
 {
        return (new power(f(basis), f(exponent)))->setflag(status_flags::dynallocated);
 }