X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Ffunction.pl;h=07e82e19d2578c73e6c10e3e9cf76caa6a60e797;hp=4db801bb652abc610154857e9b4d5ff6eaca16d8;hb=8fa654f2637fa755e890499ece1a7bc498779ea3;hpb=95ede03f00106be5fb087d76c86ca5c27edb9122 diff --git a/ginac/function.pl b/ginac/function.pl index 4db801bb..07e82e19 100644 --- a/ginac/function.pl +++ b/ginac/function.pl @@ -1122,7 +1122,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) { @@ -1312,8 +1312,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)