From: Jens Vollinga Date: Sat, 29 Nov 2003 17:33:47 +0000 (+0000) Subject: * Removed convert_H_notation, added convert_H_to_Li X-Git-Tag: release_1-2-0~58 X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?a=commitdiff_plain;h=8dac6a55c86bcae6c5a3b980af2c864f4dd4259f;p=ginac.git * Removed convert_H_notation, added convert_H_to_Li --- diff --git a/ginsh/ginsh_parser.yy b/ginsh/ginsh_parser.yy index 1ecaf6b5..a7a38efe 100644 --- a/ginsh/ginsh_parser.yy +++ b/ginsh/ginsh_parser.yy @@ -299,7 +299,7 @@ static void push(const ex &e) static ex f_collect(const exprseq &e) {return e[0].collect(e[1]);} static ex f_collect_distributed(const exprseq &e) {return e[0].collect(e[1], true);} static ex f_collect_common_factors(const exprseq &e) {return collect_common_factors(e[0]);} -static ex f_convert_H_notation(const exprseq &e) {return convert_H_notation(e[0], e[1]);} +static ex f_convert_H_to_Li(const exprseq &e) {return convert_H_to_Li(e[0], e[1]);} static ex f_degree(const exprseq &e) {return e[0].degree(e[1]);} static ex f_denom(const exprseq &e) {return e[0].denom();} static ex f_eval1(const exprseq &e) {return e[0].eval();} @@ -539,7 +539,7 @@ static const fcn_init builtin_fcns[] = { {"collect_common_factors", f_collect_common_factors, 1}, {"collect_distributed", f_collect_distributed, 2}, {"content", f_content, 2}, - {"convert_H_notation", f_convert_H_notation, 2}, + {"convert_H_to_Li", f_convert_H_to_Li, 2}, {"decomp_rational", f_decomp_rational, 2}, {"degree", f_degree, 2}, {"denom", f_denom, 1},