]> www.ginac.de Git - ginac.git/blobdiff - ginac/function.pl
Parser: handle abbreviations as advertized in the manual.
[ginac.git] / ginac / function.pl
index 81c08ae44881f13143d80c02311bfd355a3ec1b7..1ca923d462fb9556442434612e0c9f9c3d6bee3e 100644 (file)
@@ -1124,7 +1124,7 @@ ex function::conjugate() const
        const function_options & opt = registered_functions()[serial];
 
        if (opt.conjugate_f==0) {
-               return exprseq::conjugate();
+               return conjugate_function(*this).hold();
        }
 
        if (opt.conjugate_use_exvector_args) {
@@ -1314,8 +1314,8 @@ ex function::power(const ex & power_param) const // power of function
        
        // No derivative defined? Then return abstract derivative object
        if (opt.power_f == NULL)
-               return (new power::power(*this, power_param))->setflag(status_flags::dynallocated |
-                                                      status_flags::evaluated);
+               return (new GiNaC::power(*this, power_param))->setflag(status_flags::dynallocated |
+                                                                      status_flags::evaluated);
 
        current_serial = serial;
        if (opt.power_use_exvector_args)