X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Finifcns.cpp;h=e9c93938cfebfe0a4405e79e5a2dad5eced2cacd;hp=745223062a70a0f0ba9332942bdeece970f7a05f;hb=5e1d38fb7294baa1922341021698a2106238b571;hpb=bf82f5b1d41738936afe763e1fa6aa347c81ba2c diff --git a/ginac/inifcns.cpp b/ginac/inifcns.cpp index 74522306..e9c93938 100644 --- a/ginac/inifcns.cpp +++ b/ginac/inifcns.cpp @@ -3,7 +3,7 @@ * Implementation of GiNaC's initially known functions. */ /* - * GiNaC Copyright (C) 1999-2002 Johannes Gutenberg University Mainz, Germany + * GiNaC Copyright (C) 1999-2003 Johannes Gutenberg University Mainz, Germany * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -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(x)) return factorial(ex_to(x)); else return factorial(x).hold(); @@ -385,7 +399,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 +414,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 +467,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 +499,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