X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Finifcns.cpp;h=25eaae0d9a2939dc15bd59dbe118d9f12ac80d58;hp=5eb4466cc72b710865d8842e4aa935fecdc858f5;hb=afdd7fa8c6c0a587f7c80789198551383e8beb7b;hpb=9eab44408b9213d8909b7a9e525f404ad06064dd diff --git a/ginac/inifcns.cpp b/ginac/inifcns.cpp index 5eb4466c..25eaae0d 100644 --- a/ginac/inifcns.cpp +++ b/ginac/inifcns.cpp @@ -36,13 +36,15 @@ #include "series.h" #include "symbol.h" +#ifndef NO_GINAC_NAMESPACE namespace GiNaC { +#endif // ndef NO_GINAC_NAMESPACE ////////// // dilogarithm ////////// -ex Li2_eval(ex const & x) +static ex Li2_eval(ex const & x) { if (x.is_zero()) return x; @@ -59,7 +61,7 @@ REGISTER_FUNCTION(Li2, Li2_eval, NULL, NULL, NULL); // trilogarithm ////////// -ex Li3_eval(ex const & x) +static ex Li3_eval(ex const & x) { if (x.is_zero()) return x; @@ -72,12 +74,12 @@ REGISTER_FUNCTION(Li3, Li3_eval, NULL, NULL, NULL); // factorial ////////// -ex factorial_evalf(ex const & x) +static ex factorial_evalf(ex const & x) { return factorial(x).hold(); } -ex factorial_eval(ex const & x) +static ex factorial_eval(ex const & x) { if (is_ex_exactly_of_type(x, numeric)) return factorial(ex_to_numeric(x)); @@ -91,12 +93,12 @@ REGISTER_FUNCTION(factorial, factorial_eval, factorial_evalf, NULL, NULL); // binomial ////////// -ex binomial_evalf(ex const & x, ex const & y) +static ex binomial_evalf(ex const & x, ex const & y) { return binomial(x, y).hold(); } -ex binomial_eval(ex const & x, ex const &y) +static ex binomial_eval(ex const & x, ex const &y) { if (is_ex_exactly_of_type(x, numeric) && is_ex_exactly_of_type(y, numeric)) return binomial(ex_to_numeric(x), ex_to_numeric(y)); @@ -110,7 +112,7 @@ REGISTER_FUNCTION(binomial, binomial_eval, binomial_evalf, NULL, NULL); // Order term function (for truncated power series) ////////// -ex Order_eval(ex const & x) +static ex Order_eval(ex const & x) { if (is_ex_exactly_of_type(x, numeric)) { @@ -129,7 +131,7 @@ ex Order_eval(ex const & x) return Order(x).hold(); } -ex Order_series(ex const & x, symbol const & s, ex const & point, int order) +static ex Order_series(ex const & x, symbol const & s, ex const & point, int order) { // Just wrap the function into a series object epvector new_seq; @@ -149,8 +151,8 @@ ex lsolve(ex const &eqns, ex const &symbols) } ex sol=lsolve(lst(eqns),lst(symbols)); - ASSERT(sol.nops()==1); - ASSERT(is_ex_exactly_of_type(sol.op(0),relational)); + GINAC_ASSERT(sol.nops()==1); + GINAC_ASSERT(is_ex_exactly_of_type(sol.op(0),relational)); return sol.op(0).op(1); // return rhs of first solution } @@ -208,7 +210,7 @@ ex lsolve(ex const &eqns, ex const &symbols) } catch (runtime_error const & e) { // probably singular matrix (or other error) // return empty solution list - cerr << e.what() << endl; + // cerr << e.what() << endl; return lst(); } @@ -247,4 +249,11 @@ ex ncpower(ex const &basis, unsigned exponent) return ncmul(v,1); } +/** Force inclusion of functions from initcns_gamma and inifcns_zeta + * for static lib (so ginsh will see them). */ +unsigned force_include_gamma = function_index_gamma; +unsigned force_include_zeta = function_index_zeta; + +#ifndef NO_GINAC_NAMESPACE } // namespace GiNaC +#endif // ndef NO_GINAC_NAMESPACE