X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Finifcns_gamma.cpp;h=fd3c32efef5359475862b5f413c6b543ac97d572;hp=5683fd21328d91133d8f311cd6f8e804d77495fe;hb=e7ced0f9f2b1be6d745da38872664a705b0decd4;hpb=dab53bee0de888619c55b9ff7d7427dda67d9186 diff --git a/ginac/inifcns_gamma.cpp b/ginac/inifcns_gamma.cpp index 5683fd21..fd3c32ef 100644 --- a/ginac/inifcns_gamma.cpp +++ b/ginac/inifcns_gamma.cpp @@ -41,7 +41,7 @@ namespace GiNaC { * evaluation some day... * * @exception fail_numeric("complex_infinity") or something similar... */ -ex gamma_eval(ex const & x) +static ex gamma_eval(ex const & x) { if ( x.info(info_flags::numeric) ) { @@ -76,7 +76,7 @@ ex gamma_eval(ex const & x) return gamma(x).hold(); } -ex gamma_evalf(ex const & x) +static ex gamma_evalf(ex const & x) { BEGIN_TYPECHECK TYPECHECK(x,numeric) @@ -85,14 +85,14 @@ ex gamma_evalf(ex const & x) return gamma(ex_to_numeric(x)); } -ex gamma_diff(ex const & x, unsigned diff_param) +static ex gamma_diff(ex const & x, unsigned diff_param) { ASSERT(diff_param==0); return power(x, -1); // FIXME } -ex gamma_series(ex const & x, symbol const & s, ex const & point, int order) +static ex gamma_series(ex const & x, symbol const & s, ex const & point, int order) { // FIXME: Only handle one special case for now... if (x.is_equal(s) && point.is_zero()) {