X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Finifcns.cpp;h=443022a556da6c9f48e062e2381b4be05b0e0ae3;hp=9d373e794a7313d2c68ce5c27381cb0bb8fd49e1;hb=f78b1f296310b5f1c01b74c9fb10dd33af2a8f4a;hpb=dbd9c306a74f1cb258c0d15a346b973b39deaad2 diff --git a/ginac/inifcns.cpp b/ginac/inifcns.cpp index 9d373e79..443022a5 100644 --- a/ginac/inifcns.cpp +++ b/ginac/inifcns.cpp @@ -30,6 +30,7 @@ #include "matrix.h" #include "mul.h" #include "power.h" +#include "operators.h" #include "relational.h" #include "pseries.h" #include "symbol.h" @@ -52,14 +53,27 @@ static ex abs_evalf(const ex & arg) static ex abs_eval(const ex & arg) { - if (is_ex_exactly_of_type(arg, numeric)) + if (is_exactly_a(arg)) return abs(ex_to(arg)); else return abs(arg).hold(); } +static void abs_print_latex(const ex & arg, const print_context & c) +{ + c.s << "{|"; arg.print(c); c.s << "|}"; +} + +static void abs_print_csrc_float(const ex & arg, const print_context & c) +{ + c.s << "fabs("; arg.print(c); c.s << ")"; +} + REGISTER_FUNCTION(abs, eval_func(abs_eval). - evalf_func(abs_evalf)); + evalf_func(abs_evalf). + print_func(abs_print_latex). + print_func(abs_print_csrc_float). + print_func(abs_print_csrc_float)); ////////// @@ -76,11 +90,11 @@ static ex csgn_evalf(const ex & arg) static ex csgn_eval(const ex & arg) { - if (is_ex_exactly_of_type(arg, numeric)) + if (is_exactly_a(arg)) return csgn(ex_to(arg)); - else if (is_ex_exactly_of_type(arg, mul) && - is_ex_of_type(arg.op(arg.nops()-1),numeric)) { + else if (is_exactly_a(arg) && + is_exactly_a(arg.op(arg.nops()-1))) { numeric oc = ex_to(arg.op(arg.nops()-1)); if (oc.is_real()) { if (oc > 0) @@ -108,7 +122,7 @@ static ex csgn_series(const ex & arg, int order, unsigned options) { - const ex arg_pt = arg.subs(rel); + const ex arg_pt = arg.subs(rel, subs_options::no_pattern); if (arg_pt.info(info_flags::numeric) && ex_to(arg_pt).real().is_zero() && !(options & series_options::suppress_branchcut)) @@ -185,8 +199,8 @@ static ex eta_series(const ex & x, const ex & y, int order, unsigned options) { - const ex x_pt = x.subs(rel); - const ex y_pt = y.subs(rel); + const ex x_pt = x.subs(rel, subs_options::no_pattern); + const ex y_pt = y.subs(rel, subs_options::no_pattern); if ((x_pt.info(info_flags::numeric) && x_pt.info(info_flags::negative)) || (y_pt.info(info_flags::numeric) && y_pt.info(info_flags::negative)) || ((x_pt*y_pt).info(info_flags::numeric) && (x_pt*y_pt).info(info_flags::negative))) @@ -254,7 +268,7 @@ static ex Li2_deriv(const ex & x, unsigned deriv_param) static ex Li2_series(const ex &x, const relational &rel, int order, unsigned options) { - const ex x_pt = x.subs(rel); + const ex x_pt = x.subs(rel, subs_options::no_pattern); if (x_pt.info(info_flags::numeric)) { // First special case: x==0 (derivatives have poles) if (x_pt.is_zero()) { @@ -276,7 +290,7 @@ static ex Li2_series(const ex &x, const relational &rel, int order, unsigned opt for (int i=1; i zeta(x) + if (n.is_zero()) + return zeta(x); + } + + return zetaderiv(n, x).hold(); +} + +static ex zetaderiv_deriv(const ex & n, const ex & x, unsigned deriv_param) +{ + GINAC_ASSERT(deriv_param<2); + + if (deriv_param==0) { + // d/dn zeta(n,x) + throw(std::logic_error("cannot diff zetaderiv(n,x) with respect to n")); + } + // d/dx psi(n,x) + return zetaderiv(n+1,x); +} + +REGISTER_FUNCTION(zetaderiv, eval_func(zetaderiv_eval). + derivative_func(zetaderiv_deriv). + latex_name("\\zeta^\\prime")); + ////////// // factorial ////////// @@ -365,7 +410,7 @@ static ex factorial_evalf(const ex & x) static ex factorial_eval(const ex & x) { - if (is_ex_exactly_of_type(x, numeric)) + if (is_exactly_a(x)) return factorial(ex_to(x)); else return factorial(x).hold(); @@ -385,7 +430,7 @@ static ex binomial_evalf(const ex & x, const ex & y) static ex binomial_eval(const ex & x, const ex &y) { - if (is_ex_exactly_of_type(x, numeric) && is_ex_exactly_of_type(y, numeric)) + if (is_exactly_a(x) && is_exactly_a(y)) return binomial(ex_to(x), ex_to(y)); else return binomial(x, y).hold(); @@ -400,16 +445,16 @@ REGISTER_FUNCTION(binomial, eval_func(binomial_eval). static ex Order_eval(const ex & x) { - if (is_ex_exactly_of_type(x, numeric)) { + if (is_exactly_a(x)) { // O(c) -> O(1) or 0 if (!x.is_zero()) return Order(_ex1).hold(); else return _ex0; - } else if (is_ex_exactly_of_type(x, mul)) { + } else if (is_exactly_a(x)) { const mul &m = ex_to(x); // O(c*expr) -> O(expr) - if (is_ex_exactly_of_type(m.op(m.nops() - 1), numeric)) + if (is_exactly_a(m.op(m.nops() - 1))) return Order(x / m.op(m.nops() - 1)).hold(); } return Order(x).hold(); @@ -453,7 +498,7 @@ ex lsolve(const ex &eqns, const ex &symbols, unsigned options) if (!eqns.info(info_flags::list)) { throw(std::invalid_argument("lsolve(): 1st argument must be a list")); } - for (unsigned i=0; i(symbols.op(c)),1); linpart -= co*symbols.op(c); sys(r,c) = co; @@ -485,7 +530,7 @@ ex lsolve(const ex &eqns, const ex &symbols, unsigned options) } // test if system is linear and fill vars matrix - for (unsigned i=0; i