1 /** @file inifcns_nstdsums.cpp
3 * Implementation of some special functions that have a representation as nested sums.
6 * classical polylogarithm Li(n,x)
7 * multiple polylogarithm Li(lst(m_1,...,m_k),lst(x_1,...,x_k))
8 * G(lst(a_1,...,a_k),y) or G(lst(a_1,...,a_k),lst(s_1,...,s_k),y)
9 * Nielsen's generalized polylogarithm S(n,p,x)
10 * harmonic polylogarithm H(m,x) or H(lst(m_1,...,m_k),x)
11 * multiple zeta value zeta(m) or zeta(lst(m_1,...,m_k))
12 * alternating Euler sum zeta(m,s) or zeta(lst(m_1,...,m_k),lst(s_1,...,s_k))
16 * - All formulae used can be looked up in the following publications:
17 * [Kol] Nielsen's Generalized Polylogarithms, K.S.Kolbig, SIAM J.Math.Anal. 17 (1986), pp. 1232-1258.
18 * [Cra] Fast Evaluation of Multiple Zeta Sums, R.E.Crandall, Math.Comp. 67 (1998), pp. 1163-1172.
19 * [ReV] Harmonic Polylogarithms, E.Remiddi, J.A.M.Vermaseren, Int.J.Mod.Phys. A15 (2000), pp. 725-754
20 * [BBB] Special Values of Multiple Polylogarithms, J.Borwein, D.Bradley, D.Broadhurst, P.Lisonek, Trans.Amer.Math.Soc. 353/3 (2001), pp. 907-941
21 * [VSW] Numerical evaluation of multiple polylogarithms, J.Vollinga, S.Weinzierl, hep-ph/0410259
23 * - The order of parameters and arguments of Li and zeta is defined according to the nested sums
24 * representation. The parameters for H are understood as in [ReV]. They can be in expanded --- only
25 * 0, 1 and -1 --- or in compactified --- a string with zeros in front of 1 or -1 is written as a single
26 * number --- notation.
28 * - All functions can be nummerically evaluated with arguments in the whole complex plane. The parameters
29 * for Li, zeta and S must be positive integers. If you want to have an alternating Euler sum, you have
30 * to give the signs of the parameters as a second argument s to zeta(m,s) containing 1 and -1.
32 * - The calculation of classical polylogarithms is speeded up by using Bernoulli numbers and
33 * look-up tables. S uses look-up tables as well. The zeta function applies the algorithms in
34 * [Cra] and [BBB] for speed up. Multiple polylogarithms use Hoelder convolution [BBB].
36 * - The functions have no means to do a series expansion into nested sums. To do this, you have to convert
37 * these functions into the appropriate objects from the nestedsums library, do the expansion and convert
40 * - Numerical testing of this implementation has been performed by doing a comparison of results
41 * between this software and the commercial M.......... 4.1. Multiple zeta values have been checked
42 * by means of evaluations into simple zeta values. Harmonic polylogarithms have been checked by
43 * comparison to S(n,p,x) for corresponding parameter combinations and by continuity checks
44 * around |x|=1 along with comparisons to corresponding zeta functions. Multiple polylogarithms were
45 * checked against H and zeta and by means of shuffle and quasi-shuffle relations.
50 * GiNaC Copyright (C) 1999-2011 Johannes Gutenberg University Mainz, Germany
52 * This program is free software; you can redistribute it and/or modify
53 * it under the terms of the GNU General Public License as published by
54 * the Free Software Foundation; either version 2 of the License, or
55 * (at your option) any later version.
57 * This program is distributed in the hope that it will be useful,
58 * but WITHOUT ANY WARRANTY; without even the implied warranty of
59 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
60 * GNU General Public License for more details.
62 * You should have received a copy of the GNU General Public License
63 * along with this program; if not, write to the Free Software
64 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
74 #include "operators.h"
77 #include "relational.h"
90 //////////////////////////////////////////////////////////////////////
92 // Classical polylogarithm Li(n,x)
96 //////////////////////////////////////////////////////////////////////
99 // anonymous namespace for helper functions
103 // lookup table for factors built from Bernoulli numbers
105 std::vector<std::vector<cln::cl_N> > Xn;
106 // initial size of Xn that should suffice for 32bit machines (must be even)
107 const int xninitsizestep = 26;
108 int xninitsize = xninitsizestep;
112 // This function calculates the X_n. The X_n are needed for speed up of classical polylogarithms.
113 // With these numbers the polylogs can be calculated as follows:
114 // Li_p (x) = \sum_{n=0}^\infty X_{p-2}(n) u^{n+1}/(n+1)! with u = -log(1-x)
115 // X_0(n) = B_n (Bernoulli numbers)
116 // X_p(n) = \sum_{k=0}^n binomial(n,k) B_{n-k} / (k+1) * X_{p-1}(k)
117 // The calculation of Xn depends on X0 and X{n-1}.
118 // X_0 is special, it holds only the non-zero Bernoulli numbers with index 2 or greater.
119 // This results in a slightly more complicated algorithm for the X_n.
120 // The first index in Xn corresponds to the index of the polylog minus 2.
121 // The second index in Xn corresponds to the index from the actual sum.
125 // calculate X_2 and higher (corresponding to Li_4 and higher)
126 std::vector<cln::cl_N> buf(xninitsize);
127 std::vector<cln::cl_N>::iterator it = buf.begin();
129 *it = -(cln::expt(cln::cl_I(2),n+1) - 1) / cln::expt(cln::cl_I(2),n+1); // i == 1
131 for (int i=2; i<=xninitsize; i++) {
133 result = 0; // k == 0
135 result = Xn[0][i/2-1]; // k == 0
137 for (int k=1; k<i-1; k++) {
138 if ( !(((i-k) & 1) && ((i-k) > 1)) ) {
139 result = result + cln::binomial(i,k) * Xn[0][(i-k)/2-1] * Xn[n-1][k-1] / (k+1);
142 result = result - cln::binomial(i,i-1) * Xn[n-1][i-2] / 2 / i; // k == i-1
143 result = result + Xn[n-1][i-1] / (i+1); // k == i
150 // special case to handle the X_0 correct
151 std::vector<cln::cl_N> buf(xninitsize);
152 std::vector<cln::cl_N>::iterator it = buf.begin();
154 *it = cln::cl_I(-3)/cln::cl_I(4); // i == 1
156 *it = cln::cl_I(17)/cln::cl_I(36); // i == 2
158 for (int i=3; i<=xninitsize; i++) {
160 result = -Xn[0][(i-3)/2]/2;
161 *it = (cln::binomial(i,1)/cln::cl_I(2) + cln::binomial(i,i-1)/cln::cl_I(i))*result;
164 result = Xn[0][i/2-1] + Xn[0][i/2-1]/(i+1);
165 for (int k=1; k<i/2; k++) {
166 result = result + cln::binomial(i,k*2) * Xn[0][k-1] * Xn[0][i/2-k-1] / (k*2+1);
175 std::vector<cln::cl_N> buf(xninitsize/2);
176 std::vector<cln::cl_N>::iterator it = buf.begin();
177 for (int i=1; i<=xninitsize/2; i++) {
178 *it = bernoulli(i*2).to_cl_N();
187 // doubles the number of entries in each Xn[]
190 const int pos0 = xninitsize / 2;
192 for (int i=1; i<=xninitsizestep/2; ++i) {
193 Xn[0].push_back(bernoulli((i+pos0)*2).to_cl_N());
196 int xend = xninitsize + xninitsizestep;
199 for (int i=xninitsize+1; i<=xend; ++i) {
201 result = -Xn[0][(i-3)/2]/2;
202 Xn[1].push_back((cln::binomial(i,1)/cln::cl_I(2) + cln::binomial(i,i-1)/cln::cl_I(i))*result);
204 result = Xn[0][i/2-1] + Xn[0][i/2-1]/(i+1);
205 for (int k=1; k<i/2; k++) {
206 result = result + cln::binomial(i,k*2) * Xn[0][k-1] * Xn[0][i/2-k-1] / (k*2+1);
208 Xn[1].push_back(result);
212 for (size_t n=2; n<Xn.size(); ++n) {
213 for (int i=xninitsize+1; i<=xend; ++i) {
215 result = 0; // k == 0
217 result = Xn[0][i/2-1]; // k == 0
219 for (int k=1; k<i-1; ++k) {
220 if ( !(((i-k) & 1) && ((i-k) > 1)) ) {
221 result = result + cln::binomial(i,k) * Xn[0][(i-k)/2-1] * Xn[n-1][k-1] / (k+1);
224 result = result - cln::binomial(i,i-1) * Xn[n-1][i-2] / 2 / i; // k == i-1
225 result = result + Xn[n-1][i-1] / (i+1); // k == i
226 Xn[n].push_back(result);
230 xninitsize += xninitsizestep;
234 // calculates Li(2,x) without Xn
235 cln::cl_N Li2_do_sum(const cln::cl_N& x)
239 cln::cl_N num = x * cln::cl_float(1, cln::float_format(Digits));
240 cln::cl_I den = 1; // n^2 = 1
245 den = den + i; // n^2 = 4, 9, 16, ...
247 res = res + num / den;
248 } while (res != resbuf);
253 // calculates Li(2,x) with Xn
254 cln::cl_N Li2_do_sum_Xn(const cln::cl_N& x)
256 std::vector<cln::cl_N>::const_iterator it = Xn[0].begin();
257 std::vector<cln::cl_N>::const_iterator xend = Xn[0].end();
258 cln::cl_N u = -cln::log(1-x);
259 cln::cl_N factor = u * cln::cl_float(1, cln::float_format(Digits));
260 cln::cl_N uu = cln::square(u);
261 cln::cl_N res = u - uu/4;
266 factor = factor * uu / (2*i * (2*i+1));
267 res = res + (*it) * factor;
271 it = Xn[0].begin() + (i-1);
274 } while (res != resbuf);
279 // calculates Li(n,x), n>2 without Xn
280 cln::cl_N Lin_do_sum(int n, const cln::cl_N& x)
282 cln::cl_N factor = x * cln::cl_float(1, cln::float_format(Digits));
289 res = res + factor / cln::expt(cln::cl_I(i),n);
291 } while (res != resbuf);
296 // calculates Li(n,x), n>2 with Xn
297 cln::cl_N Lin_do_sum_Xn(int n, const cln::cl_N& x)
299 std::vector<cln::cl_N>::const_iterator it = Xn[n-2].begin();
300 std::vector<cln::cl_N>::const_iterator xend = Xn[n-2].end();
301 cln::cl_N u = -cln::log(1-x);
302 cln::cl_N factor = u * cln::cl_float(1, cln::float_format(Digits));
308 factor = factor * u / i;
309 res = res + (*it) * factor;
313 it = Xn[n-2].begin() + (i-2);
314 xend = Xn[n-2].end();
316 } while (res != resbuf);
321 // forward declaration needed by function Li_projection and C below
322 const cln::cl_N S_num(int n, int p, const cln::cl_N& x);
325 // helper function for classical polylog Li
326 cln::cl_N Li_projection(int n, const cln::cl_N& x, const cln::float_format_t& prec)
328 // treat n=2 as special case
330 // check if precalculated X0 exists
335 if (cln::realpart(x) < 0.5) {
336 // choose the faster algorithm
337 // the switching point was empirically determined. the optimal point
338 // depends on hardware, Digits, ... so an approx value is okay.
339 // it solves also the problem with precision due to the u=-log(1-x) transformation
340 if (cln::abs(cln::realpart(x)) < 0.25) {
342 return Li2_do_sum(x);
344 return Li2_do_sum_Xn(x);
347 // choose the faster algorithm
348 if (cln::abs(cln::realpart(x)) > 0.75) {
352 return -Li2_do_sum(1-x) - cln::log(x) * cln::log(1-x) + cln::zeta(2);
355 return -Li2_do_sum_Xn(1-x) - cln::log(x) * cln::log(1-x) + cln::zeta(2);
359 // check if precalculated Xn exist
361 for (int i=xnsize; i<n-1; i++) {
366 if (cln::realpart(x) < 0.5) {
367 // choose the faster algorithm
368 // with n>=12 the "normal" summation always wins against the method with Xn
369 if ((cln::abs(cln::realpart(x)) < 0.3) || (n >= 12)) {
370 return Lin_do_sum(n, x);
372 return Lin_do_sum_Xn(n, x);
375 cln::cl_N result = 0;
376 if ( x != 1 ) result = -cln::expt(cln::log(x), n-1) * cln::log(1-x) / cln::factorial(n-1);
377 for (int j=0; j<n-1; j++) {
378 result = result + (S_num(n-j-1, 1, 1) - S_num(1, n-j-1, 1-x))
379 * cln::expt(cln::log(x), j) / cln::factorial(j);
386 // helper function for classical polylog Li
387 const cln::cl_N Lin_numeric(const int n, const cln::cl_N& x)
391 return -cln::log(1-x);
402 return -(1-cln::expt(cln::cl_I(2),1-n)) * cln::zeta(n);
404 if (cln::abs(realpart(x)) < 0.4 && cln::abs(cln::abs(x)-1) < 0.01) {
405 cln::cl_N result = -cln::expt(cln::log(x), n-1) * cln::log(1-x) / cln::factorial(n-1);
406 for (int j=0; j<n-1; j++) {
407 result = result + (S_num(n-j-1, 1, 1) - S_num(1, n-j-1, 1-x))
408 * cln::expt(cln::log(x), j) / cln::factorial(j);
413 // what is the desired float format?
414 // first guess: default format
415 cln::float_format_t prec = cln::default_float_format;
416 const cln::cl_N value = x;
417 // second guess: the argument's format
418 if (!instanceof(realpart(x), cln::cl_RA_ring))
419 prec = cln::float_format(cln::the<cln::cl_F>(cln::realpart(value)));
420 else if (!instanceof(imagpart(x), cln::cl_RA_ring))
421 prec = cln::float_format(cln::the<cln::cl_F>(cln::imagpart(value)));
424 if (cln::abs(value) > 1) {
425 cln::cl_N result = -cln::expt(cln::log(-value),n) / cln::factorial(n);
426 // check if argument is complex. if it is real, the new polylog has to be conjugated.
427 if (cln::zerop(cln::imagpart(value))) {
429 result = result + conjugate(Li_projection(n, cln::recip(value), prec));
432 result = result - conjugate(Li_projection(n, cln::recip(value), prec));
437 result = result + Li_projection(n, cln::recip(value), prec);
440 result = result - Li_projection(n, cln::recip(value), prec);
444 for (int j=0; j<n-1; j++) {
445 add = add + (1+cln::expt(cln::cl_I(-1),n-j)) * (1-cln::expt(cln::cl_I(2),1-n+j))
446 * Lin_numeric(n-j,1) * cln::expt(cln::log(-value),j) / cln::factorial(j);
448 result = result - add;
452 return Li_projection(n, value, prec);
457 } // end of anonymous namespace
460 //////////////////////////////////////////////////////////////////////
462 // Multiple polylogarithm Li(n,x)
466 //////////////////////////////////////////////////////////////////////
469 // anonymous namespace for helper function
473 // performs the actual series summation for multiple polylogarithms
474 cln::cl_N multipleLi_do_sum(const std::vector<int>& s, const std::vector<cln::cl_N>& x)
476 // ensure all x <> 0.
477 for (std::vector<cln::cl_N>::const_iterator it = x.begin(); it != x.end(); ++it) {
478 if ( *it == 0 ) return cln::cl_float(0, cln::float_format(Digits));
481 const int j = s.size();
482 bool flag_accidental_zero = false;
484 std::vector<cln::cl_N> t(j);
485 cln::cl_F one = cln::cl_float(1, cln::float_format(Digits));
492 t[j-1] = t[j-1] + cln::expt(x[j-1], q) / cln::expt(cln::cl_I(q),s[j-1]) * one;
493 for (int k=j-2; k>=0; k--) {
494 t[k] = t[k] + t[k+1] * cln::expt(x[k], q+j-1-k) / cln::expt(cln::cl_I(q+j-1-k), s[k]);
497 t[j-1] = t[j-1] + cln::expt(x[j-1], q) / cln::expt(cln::cl_I(q),s[j-1]) * one;
498 for (int k=j-2; k>=0; k--) {
499 flag_accidental_zero = cln::zerop(t[k+1]);
500 t[k] = t[k] + t[k+1] * cln::expt(x[k], q+j-1-k) / cln::expt(cln::cl_I(q+j-1-k), s[k]);
502 } while ( (t[0] != t0buf) || cln::zerop(t[0]) || flag_accidental_zero );
508 // forward declaration for Li_eval()
509 lst convert_parameter_Li_to_H(const lst& m, const lst& x, ex& pf);
512 // type used by the transformation functions for G
513 typedef std::vector<int> Gparameter;
516 // G_eval1-function for G transformations
517 ex G_eval1(int a, int scale, const exvector& gsyms)
520 const ex& scs = gsyms[std::abs(scale)];
521 const ex& as = gsyms[std::abs(a)];
523 return -log(1 - scs/as);
528 return log(gsyms[std::abs(scale)]);
533 // G_eval-function for G transformations
534 ex G_eval(const Gparameter& a, int scale, const exvector& gsyms)
536 // check for properties of G
537 ex sc = gsyms[std::abs(scale)];
539 bool all_zero = true;
540 bool all_ones = true;
542 for (Gparameter::const_iterator it = a.begin(); it != a.end(); ++it) {
544 const ex sym = gsyms[std::abs(*it)];
558 // care about divergent G: shuffle to separate divergencies that will be canceled
559 // later on in the transformation
560 if (newa.nops() > 1 && newa.op(0) == sc && !all_ones && a.front()!=0) {
563 Gparameter::const_iterator it = a.begin();
565 for (; it != a.end(); ++it) {
566 short_a.push_back(*it);
568 ex result = G_eval1(a.front(), scale, gsyms) * G_eval(short_a, scale, gsyms);
569 it = short_a.begin();
570 for (int i=1; i<count_ones; ++i) {
573 for (; it != short_a.end(); ++it) {
576 Gparameter::const_iterator it2 = short_a.begin();
577 for (; it2 != it; ++it2) {
578 newa.push_back(*it2);
581 newa.push_back(a[0]);
584 for (; it2 != short_a.end(); ++it2) {
585 newa.push_back(*it2);
587 result -= G_eval(newa, scale, gsyms);
589 return result / count_ones;
592 // G({1,...,1};y) -> G({1};y)^k / k!
593 if (all_ones && a.size() > 1) {
594 return pow(G_eval1(a.front(),scale, gsyms), count_ones) / factorial(count_ones);
597 // G({0,...,0};y) -> log(y)^k / k!
599 return pow(log(gsyms[std::abs(scale)]), a.size()) / factorial(a.size());
602 // no special cases anymore -> convert it into Li
605 ex argbuf = gsyms[std::abs(scale)];
607 for (Gparameter::const_iterator it=a.begin(); it!=a.end(); ++it) {
609 const ex& sym = gsyms[std::abs(*it)];
610 x.append(argbuf / sym);
618 return pow(-1, x.nops()) * Li(m, x);
622 // converts data for G: pending_integrals -> a
623 Gparameter convert_pending_integrals_G(const Gparameter& pending_integrals)
625 GINAC_ASSERT(pending_integrals.size() != 1);
627 if (pending_integrals.size() > 0) {
628 // get rid of the first element, which would stand for the new upper limit
629 Gparameter new_a(pending_integrals.begin()+1, pending_integrals.end());
632 // just return empty parameter list
639 // check the parameters a and scale for G and return information about convergence, depth, etc.
640 // convergent : true if G(a,scale) is convergent
641 // depth : depth of G(a,scale)
642 // trailing_zeros : number of trailing zeros of a
643 // min_it : iterator of a pointing on the smallest element in a
644 Gparameter::const_iterator check_parameter_G(const Gparameter& a, int scale,
645 bool& convergent, int& depth, int& trailing_zeros, Gparameter::const_iterator& min_it)
651 Gparameter::const_iterator lastnonzero = a.end();
652 for (Gparameter::const_iterator it = a.begin(); it != a.end(); ++it) {
653 if (std::abs(*it) > 0) {
657 if (std::abs(*it) < scale) {
659 if ((min_it == a.end()) || (std::abs(*it) < std::abs(*min_it))) {
667 if (lastnonzero == a.end())
669 return ++lastnonzero;
673 // add scale to pending_integrals if pending_integrals is empty
674 Gparameter prepare_pending_integrals(const Gparameter& pending_integrals, int scale)
676 GINAC_ASSERT(pending_integrals.size() != 1);
678 if (pending_integrals.size() > 0) {
679 return pending_integrals;
681 Gparameter new_pending_integrals;
682 new_pending_integrals.push_back(scale);
683 return new_pending_integrals;
688 // handles trailing zeroes for an otherwise convergent integral
689 ex trailing_zeros_G(const Gparameter& a, int scale, const exvector& gsyms)
692 int depth, trailing_zeros;
693 Gparameter::const_iterator last, dummyit;
694 last = check_parameter_G(a, scale, convergent, depth, trailing_zeros, dummyit);
696 GINAC_ASSERT(convergent);
698 if ((trailing_zeros > 0) && (depth > 0)) {
700 Gparameter new_a(a.begin(), a.end()-1);
701 result += G_eval1(0, scale, gsyms) * trailing_zeros_G(new_a, scale, gsyms);
702 for (Gparameter::const_iterator it = a.begin(); it != last; ++it) {
703 Gparameter new_a(a.begin(), it);
705 new_a.insert(new_a.end(), it, a.end()-1);
706 result -= trailing_zeros_G(new_a, scale, gsyms);
709 return result / trailing_zeros;
711 return G_eval(a, scale, gsyms);
716 // G transformation [VSW] (57),(58)
717 ex depth_one_trafo_G(const Gparameter& pending_integrals, const Gparameter& a, int scale, const exvector& gsyms)
719 // pendint = ( y1, b1, ..., br )
720 // a = ( 0, ..., 0, amin )
723 // int_0^y1 ds1/(s1-b1) ... int dsr/(sr-br) G(0, ..., 0, sr; y2)
724 // where sr replaces amin
726 GINAC_ASSERT(a.back() != 0);
727 GINAC_ASSERT(a.size() > 0);
730 Gparameter new_pending_integrals = prepare_pending_integrals(pending_integrals, std::abs(a.back()));
731 const int psize = pending_integrals.size();
734 // G(sr_{+-}; y2 ) = G(y2_{-+}; sr) - G(0; sr) + ln(-y2_{-+})
739 result += log(gsyms[ex_to<numeric>(scale).to_int()]);
741 new_pending_integrals.push_back(-scale);
744 new_pending_integrals.push_back(scale);
748 result *= trailing_zeros_G(convert_pending_integrals_G(pending_integrals),
749 pending_integrals.front(),
754 result += trailing_zeros_G(convert_pending_integrals_G(new_pending_integrals),
755 new_pending_integrals.front(),
759 new_pending_integrals.back() = 0;
760 result -= trailing_zeros_G(convert_pending_integrals_G(new_pending_integrals),
761 new_pending_integrals.front(),
768 // G_m(sr_{+-}; y2) = -zeta_m + int_0^y2 dt/t G_{m-1}( (1/y2)_{+-}; 1/t )
769 // - int_0^sr dt/t G_{m-1}( (1/y2)_{+-}; 1/t )
772 result -= zeta(a.size());
774 result *= trailing_zeros_G(convert_pending_integrals_G(pending_integrals),
775 pending_integrals.front(),
779 // term int_0^sr dt/t G_{m-1}( (1/y2)_{+-}; 1/t )
780 // = int_0^sr dt/t G_{m-1}( t_{+-}; y2 )
781 Gparameter new_a(a.begin()+1, a.end());
782 new_pending_integrals.push_back(0);
783 result -= depth_one_trafo_G(new_pending_integrals, new_a, scale, gsyms);
785 // term int_0^y2 dt/t G_{m-1}( (1/y2)_{+-}; 1/t )
786 // = int_0^y2 dt/t G_{m-1}( t_{+-}; y2 )
787 Gparameter new_pending_integrals_2;
788 new_pending_integrals_2.push_back(scale);
789 new_pending_integrals_2.push_back(0);
791 result += trailing_zeros_G(convert_pending_integrals_G(pending_integrals),
792 pending_integrals.front(),
794 * depth_one_trafo_G(new_pending_integrals_2, new_a, scale, gsyms);
796 result += depth_one_trafo_G(new_pending_integrals_2, new_a, scale, gsyms);
803 // forward declaration
804 ex shuffle_G(const Gparameter & a0, const Gparameter & a1, const Gparameter & a2,
805 const Gparameter& pendint, const Gparameter& a_old, int scale,
806 const exvector& gsyms);
809 // G transformation [VSW]
810 ex G_transform(const Gparameter& pendint, const Gparameter& a, int scale,
811 const exvector& gsyms)
813 // main recursion routine
815 // pendint = ( y1, b1, ..., br )
816 // a = ( a1, ..., amin, ..., aw )
819 // int_0^y1 ds1/(s1-b1) ... int dsr/(sr-br) G(a1,...,sr,...,aw,y2)
820 // where sr replaces amin
822 // find smallest alpha, determine depth and trailing zeros, and check for convergence
824 int depth, trailing_zeros;
825 Gparameter::const_iterator min_it;
826 Gparameter::const_iterator firstzero =
827 check_parameter_G(a, scale, convergent, depth, trailing_zeros, min_it);
828 int min_it_pos = min_it - a.begin();
830 // special case: all a's are zero
837 result = G_eval(a, scale, gsyms);
839 if (pendint.size() > 0) {
840 result *= trailing_zeros_G(convert_pending_integrals_G(pendint),
847 // handle trailing zeros
848 if (trailing_zeros > 0) {
850 Gparameter new_a(a.begin(), a.end()-1);
851 result += G_eval1(0, scale, gsyms) * G_transform(pendint, new_a, scale, gsyms);
852 for (Gparameter::const_iterator it = a.begin(); it != firstzero; ++it) {
853 Gparameter new_a(a.begin(), it);
855 new_a.insert(new_a.end(), it, a.end()-1);
856 result -= G_transform(pendint, new_a, scale, gsyms);
858 return result / trailing_zeros;
863 if (pendint.size() > 0) {
864 return G_eval(convert_pending_integrals_G(pendint),
865 pendint.front(), gsyms)*
866 G_eval(a, scale, gsyms);
868 return G_eval(a, scale, gsyms);
872 // call basic transformation for depth equal one
874 return depth_one_trafo_G(pendint, a, scale, gsyms);
878 // int_0^y1 ds1/(s1-b1) ... int dsr/(sr-br) G(a1,...,sr,...,aw,y2)
879 // = int_0^y1 ds1/(s1-b1) ... int dsr/(sr-br) G(a1,...,0,...,aw,y2)
880 // + int_0^y1 ds1/(s1-b1) ... int dsr/(sr-br) int_0^{sr} ds_{r+1} d/ds_{r+1} G(a1,...,s_{r+1},...,aw,y2)
882 // smallest element in last place
883 if (min_it + 1 == a.end()) {
884 do { --min_it; } while (*min_it == 0);
886 Gparameter a1(a.begin(),min_it+1);
887 Gparameter a2(min_it+1,a.end());
889 ex result = G_transform(pendint, a2, scale, gsyms)*
890 G_transform(empty, a1, scale, gsyms);
892 result -= shuffle_G(empty, a1, a2, pendint, a, scale, gsyms);
897 Gparameter::iterator changeit;
899 // first term G(a_1,..,0,...,a_w;a_0)
900 Gparameter new_pendint = prepare_pending_integrals(pendint, a[min_it_pos]);
901 Gparameter new_a = a;
902 new_a[min_it_pos] = 0;
903 ex result = G_transform(empty, new_a, scale, gsyms);
904 if (pendint.size() > 0) {
905 result *= trailing_zeros_G(convert_pending_integrals_G(pendint),
906 pendint.front(), gsyms);
910 changeit = new_a.begin() + min_it_pos;
911 changeit = new_a.erase(changeit);
912 if (changeit != new_a.begin()) {
913 // smallest in the middle
914 new_pendint.push_back(*changeit);
915 result -= trailing_zeros_G(convert_pending_integrals_G(new_pendint),
916 new_pendint.front(), gsyms)*
917 G_transform(empty, new_a, scale, gsyms);
918 int buffer = *changeit;
920 result += G_transform(new_pendint, new_a, scale, gsyms);
922 new_pendint.pop_back();
924 new_pendint.push_back(*changeit);
925 result += trailing_zeros_G(convert_pending_integrals_G(new_pendint),
926 new_pendint.front(), gsyms)*
927 G_transform(empty, new_a, scale, gsyms);
929 result -= G_transform(new_pendint, new_a, scale, gsyms);
931 // smallest at the front
932 new_pendint.push_back(scale);
933 result += trailing_zeros_G(convert_pending_integrals_G(new_pendint),
934 new_pendint.front(), gsyms)*
935 G_transform(empty, new_a, scale, gsyms);
936 new_pendint.back() = *changeit;
937 result -= trailing_zeros_G(convert_pending_integrals_G(new_pendint),
938 new_pendint.front(), gsyms)*
939 G_transform(empty, new_a, scale, gsyms);
941 result += G_transform(new_pendint, new_a, scale, gsyms);
947 // shuffles the two parameter list a1 and a2 and calls G_transform for every term except
948 // for the one that is equal to a_old
949 ex shuffle_G(const Gparameter & a0, const Gparameter & a1, const Gparameter & a2,
950 const Gparameter& pendint, const Gparameter& a_old, int scale,
951 const exvector& gsyms)
953 if (a1.size()==0 && a2.size()==0) {
954 // veto the one configuration we don't want
955 if ( a0 == a_old ) return 0;
957 return G_transform(pendint, a0, scale, gsyms);
963 aa0.insert(aa0.end(),a1.begin(),a1.end());
964 return shuffle_G(aa0, empty, empty, pendint, a_old, scale, gsyms);
970 aa0.insert(aa0.end(),a2.begin(),a2.end());
971 return shuffle_G(aa0, empty, empty, pendint, a_old, scale, gsyms);
974 Gparameter a1_removed(a1.begin()+1,a1.end());
975 Gparameter a2_removed(a2.begin()+1,a2.end());
980 a01.push_back( a1[0] );
981 a02.push_back( a2[0] );
983 return shuffle_G(a01, a1_removed, a2, pendint, a_old, scale, gsyms)
984 + shuffle_G(a02, a1, a2_removed, pendint, a_old, scale, gsyms);
987 // handles the transformations and the numerical evaluation of G
988 // the parameter x, s and y must only contain numerics
990 G_numeric(const std::vector<cln::cl_N>& x, const std::vector<int>& s,
993 // do acceleration transformation (hoelder convolution [BBB])
994 // the parameter x, s and y must only contain numerics
996 G_do_hoelder(std::vector<cln::cl_N> x, /* yes, it's passed by value */
997 const std::vector<int>& s, const cln::cl_N& y)
1000 const std::size_t size = x.size();
1001 for (std::size_t i = 0; i < size; ++i)
1004 for (std::size_t r = 0; r <= size; ++r) {
1005 cln::cl_N buffer(1 & r ? -1 : 1);
1010 for (std::size_t i = 0; i < size; ++i) {
1011 if (x[i] == cln::cl_RA(1)/p) {
1012 p = p/2 + cln::cl_RA(3)/2;
1018 cln::cl_RA q = p/(p-1);
1019 std::vector<cln::cl_N> qlstx;
1020 std::vector<int> qlsts;
1021 for (std::size_t j = r; j >= 1; --j) {
1022 qlstx.push_back(cln::cl_N(1) - x[j-1]);
1023 if (instanceof(x[j-1], cln::cl_R_ring) &&
1024 realpart(x[j-1]) > 1 && realpart(x[j-1]) <= 2) {
1025 qlsts.push_back(s[j-1]);
1027 qlsts.push_back(-s[j-1]);
1030 if (qlstx.size() > 0) {
1031 buffer = buffer*G_numeric(qlstx, qlsts, 1/q);
1033 std::vector<cln::cl_N> plstx;
1034 std::vector<int> plsts;
1035 for (std::size_t j = r+1; j <= size; ++j) {
1036 plstx.push_back(x[j-1]);
1037 plsts.push_back(s[j-1]);
1039 if (plstx.size() > 0) {
1040 buffer = buffer*G_numeric(plstx, plsts, 1/p);
1042 result = result + buffer;
1047 // convergence transformation, used for numerical evaluation of G function.
1048 // the parameter x, s and y must only contain numerics
1050 G_do_trafo(const std::vector<cln::cl_N>& x, const std::vector<int>& s,
1053 // sort (|x|<->position) to determine indices
1054 typedef std::multimap<cln::cl_R, std::size_t> sortmap_t;
1056 std::size_t size = 0;
1057 for (std::size_t i = 0; i < x.size(); ++i) {
1059 sortmap.insert(std::make_pair(abs(x[i]), i));
1063 // include upper limit (scale)
1064 sortmap.insert(std::make_pair(abs(y), x.size()));
1066 // generate missing dummy-symbols
1068 // holding dummy-symbols for the G/Li transformations
1070 gsyms.push_back(symbol("GSYMS_ERROR"));
1071 cln::cl_N lastentry(0);
1072 for (sortmap_t::const_iterator it = sortmap.begin(); it != sortmap.end(); ++it) {
1073 if (it != sortmap.begin()) {
1074 if (it->second < x.size()) {
1075 if (x[it->second] == lastentry) {
1076 gsyms.push_back(gsyms.back());
1080 if (y == lastentry) {
1081 gsyms.push_back(gsyms.back());
1086 std::ostringstream os;
1088 gsyms.push_back(symbol(os.str()));
1090 if (it->second < x.size()) {
1091 lastentry = x[it->second];
1097 // fill position data according to sorted indices and prepare substitution list
1098 Gparameter a(x.size());
1100 std::size_t pos = 1;
1102 for (sortmap_t::const_iterator it = sortmap.begin(); it != sortmap.end(); ++it) {
1103 if (it->second < x.size()) {
1104 if (s[it->second] > 0) {
1105 a[it->second] = pos;
1107 a[it->second] = -int(pos);
1109 subslst[gsyms[pos]] = numeric(x[it->second]);
1112 subslst[gsyms[pos]] = numeric(y);
1117 // do transformation
1119 ex result = G_transform(pendint, a, scale, gsyms);
1120 // replace dummy symbols with their values
1121 result = result.eval().expand();
1122 result = result.subs(subslst).evalf();
1123 if (!is_a<numeric>(result))
1124 throw std::logic_error("G_do_trafo: G_transform returned non-numeric result");
1126 cln::cl_N ret = ex_to<numeric>(result).to_cl_N();
1130 // handles the transformations and the numerical evaluation of G
1131 // the parameter x, s and y must only contain numerics
1133 G_numeric(const std::vector<cln::cl_N>& x, const std::vector<int>& s,
1136 // check for convergence and necessary accelerations
1137 bool need_trafo = false;
1138 bool need_hoelder = false;
1139 std::size_t depth = 0;
1140 for (std::size_t i = 0; i < x.size(); ++i) {
1143 const cln::cl_N x_y = abs(x[i]) - y;
1144 if (instanceof(x_y, cln::cl_R_ring) &&
1145 realpart(x_y) < cln::least_negative_float(cln::float_format(Digits - 2)))
1148 if (abs(abs(x[i]/y) - 1) < 0.01)
1149 need_hoelder = true;
1152 if (zerop(x[x.size() - 1]))
1155 if (depth == 1 && x.size() == 2 && !need_trafo)
1156 return - Li_projection(2, y/x[1], cln::float_format(Digits));
1158 // do acceleration transformation (hoelder convolution [BBB])
1160 return G_do_hoelder(x, s, y);
1162 // convergence transformation
1164 return G_do_trafo(x, s, y);
1167 std::vector<cln::cl_N> newx;
1168 newx.reserve(x.size());
1170 m.reserve(x.size());
1173 cln::cl_N factor = y;
1174 for (std::size_t i = 0; i < x.size(); ++i) {
1178 newx.push_back(factor/x[i]);
1180 m.push_back(mcount);
1186 return sign*multipleLi_do_sum(m, newx);
1190 ex mLi_numeric(const lst& m, const lst& x)
1192 // let G_numeric do the transformation
1193 std::vector<cln::cl_N> newx;
1194 newx.reserve(x.nops());
1196 s.reserve(x.nops());
1197 cln::cl_N factor(1);
1198 for (lst::const_iterator itm = m.begin(), itx = x.begin(); itm != m.end(); ++itm, ++itx) {
1199 for (int i = 1; i < *itm; ++i) {
1200 newx.push_back(cln::cl_N(0));
1203 const cln::cl_N xi = ex_to<numeric>(*itx).to_cl_N();
1205 newx.push_back(factor);
1206 if ( !instanceof(factor, cln::cl_R_ring) && imagpart(factor) < 0 ) {
1213 return numeric(cln::cl_N(1 & m.nops() ? - 1 : 1)*G_numeric(newx, s, cln::cl_N(1)));
1217 } // end of anonymous namespace
1220 //////////////////////////////////////////////////////////////////////
1222 // Generalized multiple polylogarithm G(x, y) and G(x, s, y)
1226 //////////////////////////////////////////////////////////////////////
1229 static ex G2_evalf(const ex& x_, const ex& y)
1231 if (!y.info(info_flags::positive)) {
1232 return G(x_, y).hold();
1234 lst x = is_a<lst>(x_) ? ex_to<lst>(x_) : lst(x_);
1235 if (x.nops() == 0) {
1239 return G(x_, y).hold();
1242 s.reserve(x.nops());
1243 bool all_zero = true;
1244 for (lst::const_iterator it = x.begin(); it != x.end(); ++it) {
1245 if (!(*it).info(info_flags::numeric)) {
1246 return G(x_, y).hold();
1251 if ( !ex_to<numeric>(*it).is_real() && ex_to<numeric>(*it).imag() < 0 ) {
1259 return pow(log(y), x.nops()) / factorial(x.nops());
1261 std::vector<cln::cl_N> xv;
1262 xv.reserve(x.nops());
1263 for (lst::const_iterator it = x.begin(); it != x.end(); ++it)
1264 xv.push_back(ex_to<numeric>(*it).to_cl_N());
1265 cln::cl_N result = G_numeric(xv, s, ex_to<numeric>(y).to_cl_N());
1266 return numeric(result);
1270 static ex G2_eval(const ex& x_, const ex& y)
1272 //TODO eval to MZV or H or S or Lin
1274 if (!y.info(info_flags::positive)) {
1275 return G(x_, y).hold();
1277 lst x = is_a<lst>(x_) ? ex_to<lst>(x_) : lst(x_);
1278 if (x.nops() == 0) {
1282 return G(x_, y).hold();
1285 s.reserve(x.nops());
1286 bool all_zero = true;
1287 bool crational = true;
1288 for (lst::const_iterator it = x.begin(); it != x.end(); ++it) {
1289 if (!(*it).info(info_flags::numeric)) {
1290 return G(x_, y).hold();
1292 if (!(*it).info(info_flags::crational)) {
1298 if ( !ex_to<numeric>(*it).is_real() && ex_to<numeric>(*it).imag() < 0 ) {
1306 return pow(log(y), x.nops()) / factorial(x.nops());
1308 if (!y.info(info_flags::crational)) {
1312 return G(x_, y).hold();
1314 std::vector<cln::cl_N> xv;
1315 xv.reserve(x.nops());
1316 for (lst::const_iterator it = x.begin(); it != x.end(); ++it)
1317 xv.push_back(ex_to<numeric>(*it).to_cl_N());
1318 cln::cl_N result = G_numeric(xv, s, ex_to<numeric>(y).to_cl_N());
1319 return numeric(result);
1323 unsigned G2_SERIAL::serial = function::register_new(function_options("G", 2).
1324 evalf_func(G2_evalf).
1326 do_not_evalf_params().
1329 // derivative_func(G2_deriv).
1330 // print_func<print_latex>(G2_print_latex).
1333 static ex G3_evalf(const ex& x_, const ex& s_, const ex& y)
1335 if (!y.info(info_flags::positive)) {
1336 return G(x_, s_, y).hold();
1338 lst x = is_a<lst>(x_) ? ex_to<lst>(x_) : lst(x_);
1339 lst s = is_a<lst>(s_) ? ex_to<lst>(s_) : lst(s_);
1340 if (x.nops() != s.nops()) {
1341 return G(x_, s_, y).hold();
1343 if (x.nops() == 0) {
1347 return G(x_, s_, y).hold();
1349 std::vector<int> sn;
1350 sn.reserve(s.nops());
1351 bool all_zero = true;
1352 for (lst::const_iterator itx = x.begin(), its = s.begin(); itx != x.end(); ++itx, ++its) {
1353 if (!(*itx).info(info_flags::numeric)) {
1354 return G(x_, y).hold();
1356 if (!(*its).info(info_flags::real)) {
1357 return G(x_, y).hold();
1362 if ( ex_to<numeric>(*itx).is_real() ) {
1371 if ( ex_to<numeric>(*itx).imag() > 0 ) {
1380 return pow(log(y), x.nops()) / factorial(x.nops());
1382 std::vector<cln::cl_N> xn;
1383 xn.reserve(x.nops());
1384 for (lst::const_iterator it = x.begin(); it != x.end(); ++it)
1385 xn.push_back(ex_to<numeric>(*it).to_cl_N());
1386 cln::cl_N result = G_numeric(xn, sn, ex_to<numeric>(y).to_cl_N());
1387 return numeric(result);
1391 static ex G3_eval(const ex& x_, const ex& s_, const ex& y)
1393 //TODO eval to MZV or H or S or Lin
1395 if (!y.info(info_flags::positive)) {
1396 return G(x_, s_, y).hold();
1398 lst x = is_a<lst>(x_) ? ex_to<lst>(x_) : lst(x_);
1399 lst s = is_a<lst>(s_) ? ex_to<lst>(s_) : lst(s_);
1400 if (x.nops() != s.nops()) {
1401 return G(x_, s_, y).hold();
1403 if (x.nops() == 0) {
1407 return G(x_, s_, y).hold();
1409 std::vector<int> sn;
1410 sn.reserve(s.nops());
1411 bool all_zero = true;
1412 bool crational = true;
1413 for (lst::const_iterator itx = x.begin(), its = s.begin(); itx != x.end(); ++itx, ++its) {
1414 if (!(*itx).info(info_flags::numeric)) {
1415 return G(x_, s_, y).hold();
1417 if (!(*its).info(info_flags::real)) {
1418 return G(x_, s_, y).hold();
1420 if (!(*itx).info(info_flags::crational)) {
1426 if ( ex_to<numeric>(*itx).is_real() ) {
1435 if ( ex_to<numeric>(*itx).imag() > 0 ) {
1444 return pow(log(y), x.nops()) / factorial(x.nops());
1446 if (!y.info(info_flags::crational)) {
1450 return G(x_, s_, y).hold();
1452 std::vector<cln::cl_N> xn;
1453 xn.reserve(x.nops());
1454 for (lst::const_iterator it = x.begin(); it != x.end(); ++it)
1455 xn.push_back(ex_to<numeric>(*it).to_cl_N());
1456 cln::cl_N result = G_numeric(xn, sn, ex_to<numeric>(y).to_cl_N());
1457 return numeric(result);
1461 unsigned G3_SERIAL::serial = function::register_new(function_options("G", 3).
1462 evalf_func(G3_evalf).
1464 do_not_evalf_params().
1467 // derivative_func(G3_deriv).
1468 // print_func<print_latex>(G3_print_latex).
1471 //////////////////////////////////////////////////////////////////////
1473 // Classical polylogarithm and multiple polylogarithm Li(m,x)
1477 //////////////////////////////////////////////////////////////////////
1480 static ex Li_evalf(const ex& m_, const ex& x_)
1482 // classical polylogs
1483 if (m_.info(info_flags::posint)) {
1484 if (x_.info(info_flags::numeric)) {
1485 int m__ = ex_to<numeric>(m_).to_int();
1486 const cln::cl_N x__ = ex_to<numeric>(x_).to_cl_N();
1487 const cln::cl_N result = Lin_numeric(m__, x__);
1488 return numeric(result);
1490 // try to numerically evaluate second argument
1491 ex x_val = x_.evalf();
1492 if (x_val.info(info_flags::numeric)) {
1493 int m__ = ex_to<numeric>(m_).to_int();
1494 const cln::cl_N x__ = ex_to<numeric>(x_val).to_cl_N();
1495 const cln::cl_N result = Lin_numeric(m__, x__);
1496 return numeric(result);
1500 // multiple polylogs
1501 if (is_a<lst>(m_) && is_a<lst>(x_)) {
1503 const lst& m = ex_to<lst>(m_);
1504 const lst& x = ex_to<lst>(x_);
1505 if (m.nops() != x.nops()) {
1506 return Li(m_,x_).hold();
1508 if (x.nops() == 0) {
1511 if ((m.op(0) == _ex1) && (x.op(0) == _ex1)) {
1512 return Li(m_,x_).hold();
1515 for (lst::const_iterator itm = m.begin(), itx = x.begin(); itm != m.end(); ++itm, ++itx) {
1516 if (!(*itm).info(info_flags::posint)) {
1517 return Li(m_, x_).hold();
1519 if (!(*itx).info(info_flags::numeric)) {
1520 return Li(m_, x_).hold();
1527 return mLi_numeric(m, x);
1530 return Li(m_,x_).hold();
1534 static ex Li_eval(const ex& m_, const ex& x_)
1536 if (is_a<lst>(m_)) {
1537 if (is_a<lst>(x_)) {
1538 // multiple polylogs
1539 const lst& m = ex_to<lst>(m_);
1540 const lst& x = ex_to<lst>(x_);
1541 if (m.nops() != x.nops()) {
1542 return Li(m_,x_).hold();
1544 if (x.nops() == 0) {
1548 bool is_zeta = true;
1549 bool do_evalf = true;
1550 bool crational = true;
1551 for (lst::const_iterator itm = m.begin(), itx = x.begin(); itm != m.end(); ++itm, ++itx) {
1552 if (!(*itm).info(info_flags::posint)) {
1553 return Li(m_,x_).hold();
1555 if ((*itx != _ex1) && (*itx != _ex_1)) {
1556 if (itx != x.begin()) {
1564 if (!(*itx).info(info_flags::numeric)) {
1567 if (!(*itx).info(info_flags::crational)) {
1576 lst newm = convert_parameter_Li_to_H(m, x, prefactor);
1577 return prefactor * H(newm, x[0]);
1579 if (do_evalf && !crational) {
1580 return mLi_numeric(m,x);
1583 return Li(m_, x_).hold();
1584 } else if (is_a<lst>(x_)) {
1585 return Li(m_, x_).hold();
1588 // classical polylogs
1596 return (pow(2,1-m_)-1) * zeta(m_);
1602 if (x_.is_equal(I)) {
1603 return power(Pi,_ex2)/_ex_48 + Catalan*I;
1605 if (x_.is_equal(-I)) {
1606 return power(Pi,_ex2)/_ex_48 - Catalan*I;
1609 if (m_.info(info_flags::posint) && x_.info(info_flags::numeric) && !x_.info(info_flags::crational)) {
1610 int m__ = ex_to<numeric>(m_).to_int();
1611 const cln::cl_N x__ = ex_to<numeric>(x_).to_cl_N();
1612 const cln::cl_N result = Lin_numeric(m__, x__);
1613 return numeric(result);
1616 return Li(m_, x_).hold();
1620 static ex Li_series(const ex& m, const ex& x, const relational& rel, int order, unsigned options)
1622 if (is_a<lst>(m) || is_a<lst>(x)) {
1625 seq.push_back(expair(Li(m, x), 0));
1626 return pseries(rel, seq);
1629 // classical polylog
1630 const ex x_pt = x.subs(rel, subs_options::no_pattern);
1631 if (m.info(info_flags::numeric) && x_pt.info(info_flags::numeric)) {
1632 // First special case: x==0 (derivatives have poles)
1633 if (x_pt.is_zero()) {
1636 // manually construct the primitive expansion
1637 for (int i=1; i<order; ++i)
1638 ser += pow(s,i) / pow(numeric(i), m);
1639 // substitute the argument's series expansion
1640 ser = ser.subs(s==x.series(rel, order), subs_options::no_pattern);
1641 // maybe that was terminating, so add a proper order term
1643 nseq.push_back(expair(Order(_ex1), order));
1644 ser += pseries(rel, nseq);
1645 // reexpanding it will collapse the series again
1646 return ser.series(rel, order);
1648 // TODO special cases: x==1 (branch point) and x real, >=1 (branch cut)
1649 throw std::runtime_error("Li_series: don't know how to do the series expansion at this point!");
1651 // all other cases should be safe, by now:
1652 throw do_taylor(); // caught by function::series()
1656 static ex Li_deriv(const ex& m_, const ex& x_, unsigned deriv_param)
1658 GINAC_ASSERT(deriv_param < 2);
1659 if (deriv_param == 0) {
1662 if (m_.nops() > 1) {
1663 throw std::runtime_error("don't know how to derivate multiple polylogarithm!");
1666 if (is_a<lst>(m_)) {
1672 if (is_a<lst>(x_)) {
1678 return Li(m-1, x) / x;
1685 static void Li_print_latex(const ex& m_, const ex& x_, const print_context& c)
1688 if (is_a<lst>(m_)) {
1694 if (is_a<lst>(x_)) {
1699 c.s << "\\mathrm{Li}_{";
1700 lst::const_iterator itm = m.begin();
1703 for (; itm != m.end(); itm++) {
1708 lst::const_iterator itx = x.begin();
1711 for (; itx != x.end(); itx++) {
1719 REGISTER_FUNCTION(Li,
1720 evalf_func(Li_evalf).
1722 series_func(Li_series).
1723 derivative_func(Li_deriv).
1724 print_func<print_latex>(Li_print_latex).
1725 do_not_evalf_params());
1728 //////////////////////////////////////////////////////////////////////
1730 // Nielsen's generalized polylogarithm S(n,p,x)
1734 //////////////////////////////////////////////////////////////////////
1737 // anonymous namespace for helper functions
1741 // lookup table for special Euler-Zagier-Sums (used for S_n,p(x))
1743 std::vector<std::vector<cln::cl_N> > Yn;
1744 int ynsize = 0; // number of Yn[]
1745 int ynlength = 100; // initial length of all Yn[i]
1748 // This function calculates the Y_n. The Y_n are needed for the evaluation of S_{n,p}(x).
1749 // The Y_n are basically Euler-Zagier sums with all m_i=1. They are subsums in the Z-sum
1750 // representing S_{n,p}(x).
1751 // The first index in Y_n corresponds to the parameter p minus one, i.e. the depth of the
1752 // equivalent Z-sum.
1753 // The second index in Y_n corresponds to the running index of the outermost sum in the full Z-sum
1754 // representing S_{n,p}(x).
1755 // The calculation of Y_n uses the values from Y_{n-1}.
1756 void fill_Yn(int n, const cln::float_format_t& prec)
1758 const int initsize = ynlength;
1759 //const int initsize = initsize_Yn;
1760 cln::cl_N one = cln::cl_float(1, prec);
1763 std::vector<cln::cl_N> buf(initsize);
1764 std::vector<cln::cl_N>::iterator it = buf.begin();
1765 std::vector<cln::cl_N>::iterator itprev = Yn[n-1].begin();
1766 *it = (*itprev) / cln::cl_N(n+1) * one;
1769 // sums with an index smaller than the depth are zero and need not to be calculated.
1770 // calculation starts with depth, which is n+2)
1771 for (int i=n+2; i<=initsize+n; i++) {
1772 *it = *(it-1) + (*itprev) / cln::cl_N(i) * one;
1778 std::vector<cln::cl_N> buf(initsize);
1779 std::vector<cln::cl_N>::iterator it = buf.begin();
1782 for (int i=2; i<=initsize; i++) {
1783 *it = *(it-1) + 1 / cln::cl_N(i) * one;
1792 // make Yn longer ...
1793 void make_Yn_longer(int newsize, const cln::float_format_t& prec)
1796 cln::cl_N one = cln::cl_float(1, prec);
1798 Yn[0].resize(newsize);
1799 std::vector<cln::cl_N>::iterator it = Yn[0].begin();
1801 for (int i=ynlength+1; i<=newsize; i++) {
1802 *it = *(it-1) + 1 / cln::cl_N(i) * one;
1806 for (int n=1; n<ynsize; n++) {
1807 Yn[n].resize(newsize);
1808 std::vector<cln::cl_N>::iterator it = Yn[n].begin();
1809 std::vector<cln::cl_N>::iterator itprev = Yn[n-1].begin();
1812 for (int i=ynlength+n+1; i<=newsize+n; i++) {
1813 *it = *(it-1) + (*itprev) / cln::cl_N(i) * one;
1823 // helper function for S(n,p,x)
1825 cln::cl_N C(int n, int p)
1829 for (int k=0; k<p; k++) {
1830 for (int j=0; j<=(n+k-1)/2; j++) {
1834 result = result - 2 * cln::expt(cln::pi(),2*j) * S_num(n-2*j,p,1) / cln::factorial(2*j);
1837 result = result + 2 * cln::expt(cln::pi(),2*j) * S_num(n-2*j,p,1) / cln::factorial(2*j);
1844 result = result + cln::factorial(n+k-1)
1845 * cln::expt(cln::pi(),2*j) * S_num(n+k-2*j,p-k,1)
1846 / (cln::factorial(k) * cln::factorial(n-1) * cln::factorial(2*j));
1849 result = result - cln::factorial(n+k-1)
1850 * cln::expt(cln::pi(),2*j) * S_num(n+k-2*j,p-k,1)
1851 / (cln::factorial(k) * cln::factorial(n-1) * cln::factorial(2*j));
1856 result = result - cln::factorial(n+k-1) * cln::expt(cln::pi(),2*j) * S_num(n+k-2*j,p-k,1)
1857 / (cln::factorial(k) * cln::factorial(n-1) * cln::factorial(2*j));
1860 result = result + cln::factorial(n+k-1)
1861 * cln::expt(cln::pi(),2*j) * S_num(n+k-2*j,p-k,1)
1862 / (cln::factorial(k) * cln::factorial(n-1) * cln::factorial(2*j));
1870 if (((np)/2+n) & 1) {
1871 result = -result - cln::expt(cln::pi(),np) / (np * cln::factorial(n-1) * cln::factorial(p));
1874 result = -result + cln::expt(cln::pi(),np) / (np * cln::factorial(n-1) * cln::factorial(p));
1882 // helper function for S(n,p,x)
1883 // [Kol] remark to (9.1)
1884 cln::cl_N a_k(int k)
1893 for (int m=2; m<=k; m++) {
1894 result = result + cln::expt(cln::cl_N(-1),m) * cln::zeta(m) * a_k(k-m);
1901 // helper function for S(n,p,x)
1902 // [Kol] remark to (9.1)
1903 cln::cl_N b_k(int k)
1912 for (int m=2; m<=k; m++) {
1913 result = result + cln::expt(cln::cl_N(-1),m) * cln::zeta(m) * b_k(k-m);
1920 // helper function for S(n,p,x)
1921 cln::cl_N S_do_sum(int n, int p, const cln::cl_N& x, const cln::float_format_t& prec)
1923 static cln::float_format_t oldprec = cln::default_float_format;
1926 return Li_projection(n+1, x, prec);
1929 // precision has changed, we need to clear lookup table Yn
1930 if ( oldprec != prec ) {
1937 // check if precalculated values are sufficient
1939 for (int i=ynsize; i<p-1; i++) {
1944 // should be done otherwise
1945 cln::cl_F one = cln::cl_float(1, cln::float_format(Digits));
1946 cln::cl_N xf = x * one;
1947 //cln::cl_N xf = x * cln::cl_float(1, prec);
1951 cln::cl_N factor = cln::expt(xf, p);
1955 if (i-p >= ynlength) {
1957 make_Yn_longer(ynlength*2, prec);
1959 res = res + factor / cln::expt(cln::cl_I(i),n+1) * Yn[p-2][i-p]; // should we check it? or rely on magic number? ...
1960 //res = res + factor / cln::expt(cln::cl_I(i),n+1) * (*it); // should we check it? or rely on magic number? ...
1961 factor = factor * xf;
1963 } while (res != resbuf);
1969 // helper function for S(n,p,x)
1970 cln::cl_N S_projection(int n, int p, const cln::cl_N& x, const cln::float_format_t& prec)
1973 if (cln::abs(cln::realpart(x)) > cln::cl_F("0.5")) {
1975 cln::cl_N result = cln::expt(cln::cl_I(-1),p) * cln::expt(cln::log(x),n)
1976 * cln::expt(cln::log(1-x),p) / cln::factorial(n) / cln::factorial(p);
1978 for (int s=0; s<n; s++) {
1980 for (int r=0; r<p; r++) {
1981 res2 = res2 + cln::expt(cln::cl_I(-1),r) * cln::expt(cln::log(1-x),r)
1982 * S_do_sum(p-r,n-s,1-x,prec) / cln::factorial(r);
1984 result = result + cln::expt(cln::log(x),s) * (S_num(n-s,p,1) - res2) / cln::factorial(s);
1990 return S_do_sum(n, p, x, prec);
1994 // helper function for S(n,p,x)
1995 const cln::cl_N S_num(int n, int p, const cln::cl_N& x)
1999 // [Kol] (2.22) with (2.21)
2000 return cln::zeta(p+1);
2005 return cln::zeta(n+1);
2010 for (int nu=0; nu<n; nu++) {
2011 for (int rho=0; rho<=p; rho++) {
2012 result = result + b_k(n-nu-1) * b_k(p-rho) * a_k(nu+rho+1)
2013 * cln::factorial(nu+rho+1) / cln::factorial(rho) / cln::factorial(nu+1);
2016 result = result * cln::expt(cln::cl_I(-1),n+p-1);
2023 return -(1-cln::expt(cln::cl_I(2),-n)) * cln::zeta(n+1);
2025 // throw std::runtime_error("don't know how to evaluate this function!");
2028 // what is the desired float format?
2029 // first guess: default format
2030 cln::float_format_t prec = cln::default_float_format;
2031 const cln::cl_N value = x;
2032 // second guess: the argument's format
2033 if (!instanceof(realpart(value), cln::cl_RA_ring))
2034 prec = cln::float_format(cln::the<cln::cl_F>(cln::realpart(value)));
2035 else if (!instanceof(imagpart(value), cln::cl_RA_ring))
2036 prec = cln::float_format(cln::the<cln::cl_F>(cln::imagpart(value)));
2039 if ((cln::realpart(value) < -0.5) || (n == 0) || ((cln::abs(value) <= 1) && (cln::abs(value) > 0.95))) {
2041 cln::cl_N result = cln::expt(cln::cl_I(-1),p) * cln::expt(cln::log(value),n)
2042 * cln::expt(cln::log(1-value),p) / cln::factorial(n) / cln::factorial(p);
2044 for (int s=0; s<n; s++) {
2046 for (int r=0; r<p; r++) {
2047 res2 = res2 + cln::expt(cln::cl_I(-1),r) * cln::expt(cln::log(1-value),r)
2048 * S_num(p-r,n-s,1-value) / cln::factorial(r);
2050 result = result + cln::expt(cln::log(value),s) * (S_num(n-s,p,1) - res2) / cln::factorial(s);
2057 if (cln::abs(value) > 1) {
2061 for (int s=0; s<p; s++) {
2062 for (int r=0; r<=s; r++) {
2063 result = result + cln::expt(cln::cl_I(-1),s) * cln::expt(cln::log(-value),r) * cln::factorial(n+s-r-1)
2064 / cln::factorial(r) / cln::factorial(s-r) / cln::factorial(n-1)
2065 * S_num(n+s-r,p-s,cln::recip(value));
2068 result = result * cln::expt(cln::cl_I(-1),n);
2071 for (int r=0; r<n; r++) {
2072 res2 = res2 + cln::expt(cln::log(-value),r) * C(n-r,p) / cln::factorial(r);
2074 res2 = res2 + cln::expt(cln::log(-value),n+p) / cln::factorial(n+p);
2076 result = result + cln::expt(cln::cl_I(-1),p) * res2;
2081 return S_projection(n, p, value, prec);
2086 } // end of anonymous namespace
2089 //////////////////////////////////////////////////////////////////////
2091 // Nielsen's generalized polylogarithm S(n,p,x)
2095 //////////////////////////////////////////////////////////////////////
2098 static ex S_evalf(const ex& n, const ex& p, const ex& x)
2100 if (n.info(info_flags::posint) && p.info(info_flags::posint)) {
2101 const int n_ = ex_to<numeric>(n).to_int();
2102 const int p_ = ex_to<numeric>(p).to_int();
2103 if (is_a<numeric>(x)) {
2104 const cln::cl_N x_ = ex_to<numeric>(x).to_cl_N();
2105 const cln::cl_N result = S_num(n_, p_, x_);
2106 return numeric(result);
2108 ex x_val = x.evalf();
2109 if (is_a<numeric>(x_val)) {
2110 const cln::cl_N x_val_ = ex_to<numeric>(x_val).to_cl_N();
2111 const cln::cl_N result = S_num(n_, p_, x_val_);
2112 return numeric(result);
2116 return S(n, p, x).hold();
2120 static ex S_eval(const ex& n, const ex& p, const ex& x)
2122 if (n.info(info_flags::posint) && p.info(info_flags::posint)) {
2128 for (int i=ex_to<numeric>(p).to_int()-1; i>0; i--) {
2136 if (x.info(info_flags::numeric) && (!x.info(info_flags::crational))) {
2137 int n_ = ex_to<numeric>(n).to_int();
2138 int p_ = ex_to<numeric>(p).to_int();
2139 const cln::cl_N x_ = ex_to<numeric>(x).to_cl_N();
2140 const cln::cl_N result = S_num(n_, p_, x_);
2141 return numeric(result);
2146 return pow(-log(1-x), p) / factorial(p);
2148 return S(n, p, x).hold();
2152 static ex S_series(const ex& n, const ex& p, const ex& x, const relational& rel, int order, unsigned options)
2155 return Li(n+1, x).series(rel, order, options);
2158 const ex x_pt = x.subs(rel, subs_options::no_pattern);
2159 if (n.info(info_flags::posint) && p.info(info_flags::posint) && x_pt.info(info_flags::numeric)) {
2160 // First special case: x==0 (derivatives have poles)
2161 if (x_pt.is_zero()) {
2164 // manually construct the primitive expansion
2165 // subsum = Euler-Zagier-Sum is needed
2166 // dirty hack (slow ...) calculation of subsum:
2167 std::vector<ex> presubsum, subsum;
2168 subsum.push_back(0);
2169 for (int i=1; i<order-1; ++i) {
2170 subsum.push_back(subsum[i-1] + numeric(1, i));
2172 for (int depth=2; depth<p; ++depth) {
2174 for (int i=1; i<order-1; ++i) {
2175 subsum[i] = subsum[i-1] + numeric(1, i) * presubsum[i-1];
2179 for (int i=1; i<order; ++i) {
2180 ser += pow(s,i) / pow(numeric(i), n+1) * subsum[i-1];
2182 // substitute the argument's series expansion
2183 ser = ser.subs(s==x.series(rel, order), subs_options::no_pattern);
2184 // maybe that was terminating, so add a proper order term
2186 nseq.push_back(expair(Order(_ex1), order));
2187 ser += pseries(rel, nseq);
2188 // reexpanding it will collapse the series again
2189 return ser.series(rel, order);
2191 // TODO special cases: x==1 (branch point) and x real, >=1 (branch cut)
2192 throw std::runtime_error("S_series: don't know how to do the series expansion at this point!");
2194 // all other cases should be safe, by now:
2195 throw do_taylor(); // caught by function::series()
2199 static ex S_deriv(const ex& n, const ex& p, const ex& x, unsigned deriv_param)
2201 GINAC_ASSERT(deriv_param < 3);
2202 if (deriv_param < 2) {
2206 return S(n-1, p, x) / x;
2208 return S(n, p-1, x) / (1-x);
2213 static void S_print_latex(const ex& n, const ex& p, const ex& x, const print_context& c)
2215 c.s << "\\mathrm{S}_{";
2225 REGISTER_FUNCTION(S,
2226 evalf_func(S_evalf).
2228 series_func(S_series).
2229 derivative_func(S_deriv).
2230 print_func<print_latex>(S_print_latex).
2231 do_not_evalf_params());
2234 //////////////////////////////////////////////////////////////////////
2236 // Harmonic polylogarithm H(m,x)
2240 //////////////////////////////////////////////////////////////////////
2243 // anonymous namespace for helper functions
2247 // regulates the pole (used by 1/x-transformation)
2248 symbol H_polesign("IMSIGN");
2251 // convert parameters from H to Li representation
2252 // parameters are expected to be in expanded form, i.e. only 0, 1 and -1
2253 // returns true if some parameters are negative
2254 bool convert_parameter_H_to_Li(const lst& l, lst& m, lst& s, ex& pf)
2256 // expand parameter list
2258 for (lst::const_iterator it = l.begin(); it != l.end(); it++) {
2260 for (ex count=*it-1; count > 0; count--) {
2264 } else if (*it < -1) {
2265 for (ex count=*it+1; count < 0; count++) {
2276 bool has_negative_parameters = false;
2278 for (lst::const_iterator it = mexp.begin(); it != mexp.end(); it++) {
2284 m.append((*it+acc-1) * signum);
2286 m.append((*it-acc+1) * signum);
2292 has_negative_parameters = true;
2295 if (has_negative_parameters) {
2296 for (std::size_t i=0; i<m.nops(); i++) {
2298 m.let_op(i) = -m.op(i);
2306 return has_negative_parameters;
2310 // recursivly transforms H to corresponding multiple polylogarithms
2311 struct map_trafo_H_convert_to_Li : public map_function
2313 ex operator()(const ex& e)
2315 if (is_a<add>(e) || is_a<mul>(e)) {
2316 return e.map(*this);
2318 if (is_a<function>(e)) {
2319 std::string name = ex_to<function>(e).get_name();
2322 if (is_a<lst>(e.op(0))) {
2323 parameter = ex_to<lst>(e.op(0));
2325 parameter = lst(e.op(0));
2332 if (convert_parameter_H_to_Li(parameter, m, s, pf)) {
2333 s.let_op(0) = s.op(0) * arg;
2334 return pf * Li(m, s).hold();
2336 for (std::size_t i=0; i<m.nops(); i++) {
2339 s.let_op(0) = s.op(0) * arg;
2340 return Li(m, s).hold();
2349 // recursivly transforms H to corresponding zetas
2350 struct map_trafo_H_convert_to_zeta : public map_function
2352 ex operator()(const ex& e)
2354 if (is_a<add>(e) || is_a<mul>(e)) {
2355 return e.map(*this);
2357 if (is_a<function>(e)) {
2358 std::string name = ex_to<function>(e).get_name();
2361 if (is_a<lst>(e.op(0))) {
2362 parameter = ex_to<lst>(e.op(0));
2364 parameter = lst(e.op(0));
2370 if (convert_parameter_H_to_Li(parameter, m, s, pf)) {
2371 return pf * zeta(m, s);
2382 // remove trailing zeros from H-parameters
2383 struct map_trafo_H_reduce_trailing_zeros : public map_function
2385 ex operator()(const ex& e)
2387 if (is_a<add>(e) || is_a<mul>(e)) {
2388 return e.map(*this);
2390 if (is_a<function>(e)) {
2391 std::string name = ex_to<function>(e).get_name();
2394 if (is_a<lst>(e.op(0))) {
2395 parameter = ex_to<lst>(e.op(0));
2397 parameter = lst(e.op(0));
2400 if (parameter.op(parameter.nops()-1) == 0) {
2403 if (parameter.nops() == 1) {
2408 lst::const_iterator it = parameter.begin();
2409 while ((it != parameter.end()) && (*it == 0)) {
2412 if (it == parameter.end()) {
2413 return pow(log(arg),parameter.nops()) / factorial(parameter.nops());
2417 parameter.remove_last();
2418 std::size_t lastentry = parameter.nops();
2419 while ((lastentry > 0) && (parameter[lastentry-1] == 0)) {
2424 ex result = log(arg) * H(parameter,arg).hold();
2426 for (ex i=0; i<lastentry; i++) {
2427 if (parameter[i] > 0) {
2429 result -= (acc + parameter[i]-1) * H(parameter, arg).hold();
2432 } else if (parameter[i] < 0) {
2434 result -= (acc + abs(parameter[i]+1)) * H(parameter, arg).hold();
2442 if (lastentry < parameter.nops()) {
2443 result = result / (parameter.nops()-lastentry+1);
2444 return result.map(*this);
2456 // returns an expression with zeta functions corresponding to the parameter list for H
2457 ex convert_H_to_zeta(const lst& m)
2459 symbol xtemp("xtemp");
2460 map_trafo_H_reduce_trailing_zeros filter;
2461 map_trafo_H_convert_to_zeta filter2;
2462 return filter2(filter(H(m, xtemp).hold())).subs(xtemp == 1);
2466 // convert signs form Li to H representation
2467 lst convert_parameter_Li_to_H(const lst& m, const lst& x, ex& pf)
2470 lst::const_iterator itm = m.begin();
2471 lst::const_iterator itx = ++x.begin();
2476 while (itx != x.end()) {
2477 signum *= (*itx > 0) ? 1 : -1;
2479 res.append((*itm) * signum);
2487 // multiplies an one-dimensional H with another H
2489 ex trafo_H_mult(const ex& h1, const ex& h2)
2494 ex h1nops = h1.op(0).nops();
2495 ex h2nops = h2.op(0).nops();
2497 hshort = h2.op(0).op(0);
2498 hlong = ex_to<lst>(h1.op(0));
2500 hshort = h1.op(0).op(0);
2502 hlong = ex_to<lst>(h2.op(0));
2504 hlong = h2.op(0).op(0);
2507 for (std::size_t i=0; i<=hlong.nops(); i++) {
2511 newparameter.append(hlong[j]);
2513 newparameter.append(hshort);
2514 for (; j<hlong.nops(); j++) {
2515 newparameter.append(hlong[j]);
2517 res += H(newparameter, h1.op(1)).hold();
2523 // applies trafo_H_mult recursively on expressions
2524 struct map_trafo_H_mult : public map_function
2526 ex operator()(const ex& e)
2529 return e.map(*this);
2537 for (std::size_t pos=0; pos<e.nops(); pos++) {
2538 if (is_a<power>(e.op(pos)) && is_a<function>(e.op(pos).op(0))) {
2539 std::string name = ex_to<function>(e.op(pos).op(0)).get_name();
2541 for (ex i=0; i<e.op(pos).op(1); i++) {
2542 Hlst.append(e.op(pos).op(0));
2546 } else if (is_a<function>(e.op(pos))) {
2547 std::string name = ex_to<function>(e.op(pos)).get_name();
2549 if (e.op(pos).op(0).nops() > 1) {
2552 Hlst.append(e.op(pos));
2557 result *= e.op(pos);
2560 if (Hlst.nops() > 0) {
2561 firstH = Hlst[Hlst.nops()-1];
2568 if (Hlst.nops() > 0) {
2569 ex buffer = trafo_H_mult(firstH, Hlst.op(0));
2571 for (std::size_t i=1; i<Hlst.nops(); i++) {
2572 result *= Hlst.op(i);
2574 result = result.expand();
2575 map_trafo_H_mult recursion;
2576 return recursion(result);
2587 // do integration [ReV] (55)
2588 // put parameter 0 in front of existing parameters
2589 ex trafo_H_1tx_prepend_zero(const ex& e, const ex& arg)
2593 if (is_a<function>(e)) {
2594 name = ex_to<function>(e).get_name();
2599 for (std::size_t i=0; i<e.nops(); i++) {
2600 if (is_a<function>(e.op(i))) {
2601 std::string name = ex_to<function>(e.op(i)).get_name();
2609 lst newparameter = ex_to<lst>(h.op(0));
2610 newparameter.prepend(0);
2611 ex addzeta = convert_H_to_zeta(newparameter);
2612 return e.subs(h == (addzeta-H(newparameter, h.op(1)).hold())).expand();
2614 return e * (-H(lst(ex(0)),1/arg).hold());
2619 // do integration [ReV] (49)
2620 // put parameter 1 in front of existing parameters
2621 ex trafo_H_prepend_one(const ex& e, const ex& arg)
2625 if (is_a<function>(e)) {
2626 name = ex_to<function>(e).get_name();
2631 for (std::size_t i=0; i<e.nops(); i++) {
2632 if (is_a<function>(e.op(i))) {
2633 std::string name = ex_to<function>(e.op(i)).get_name();
2641 lst newparameter = ex_to<lst>(h.op(0));
2642 newparameter.prepend(1);
2643 return e.subs(h == H(newparameter, h.op(1)).hold());
2645 return e * H(lst(ex(1)),1-arg).hold();
2650 // do integration [ReV] (55)
2651 // put parameter -1 in front of existing parameters
2652 ex trafo_H_1tx_prepend_minusone(const ex& e, const ex& arg)
2656 if (is_a<function>(e)) {
2657 name = ex_to<function>(e).get_name();
2662 for (std::size_t i=0; i<e.nops(); i++) {
2663 if (is_a<function>(e.op(i))) {
2664 std::string name = ex_to<function>(e.op(i)).get_name();
2672 lst newparameter = ex_to<lst>(h.op(0));
2673 newparameter.prepend(-1);
2674 ex addzeta = convert_H_to_zeta(newparameter);
2675 return e.subs(h == (addzeta-H(newparameter, h.op(1)).hold())).expand();
2677 ex addzeta = convert_H_to_zeta(lst(ex(-1)));
2678 return (e * (addzeta - H(lst(ex(-1)),1/arg).hold())).expand();
2683 // do integration [ReV] (55)
2684 // put parameter -1 in front of existing parameters
2685 ex trafo_H_1mxt1px_prepend_minusone(const ex& e, const ex& arg)
2689 if (is_a<function>(e)) {
2690 name = ex_to<function>(e).get_name();
2695 for (std::size_t i = 0; i < e.nops(); i++) {
2696 if (is_a<function>(e.op(i))) {
2697 std::string name = ex_to<function>(e.op(i)).get_name();
2705 lst newparameter = ex_to<lst>(h.op(0));
2706 newparameter.prepend(-1);
2707 return e.subs(h == H(newparameter, h.op(1)).hold()).expand();
2709 return (e * H(lst(ex(-1)),(1-arg)/(1+arg)).hold()).expand();
2714 // do integration [ReV] (55)
2715 // put parameter 1 in front of existing parameters
2716 ex trafo_H_1mxt1px_prepend_one(const ex& e, const ex& arg)
2720 if (is_a<function>(e)) {
2721 name = ex_to<function>(e).get_name();
2726 for (std::size_t i = 0; i < e.nops(); i++) {
2727 if (is_a<function>(e.op(i))) {
2728 std::string name = ex_to<function>(e.op(i)).get_name();
2736 lst newparameter = ex_to<lst>(h.op(0));
2737 newparameter.prepend(1);
2738 return e.subs(h == H(newparameter, h.op(1)).hold()).expand();
2740 return (e * H(lst(ex(1)),(1-arg)/(1+arg)).hold()).expand();
2745 // do x -> 1-x transformation
2746 struct map_trafo_H_1mx : public map_function
2748 ex operator()(const ex& e)
2750 if (is_a<add>(e) || is_a<mul>(e)) {
2751 return e.map(*this);
2754 if (is_a<function>(e)) {
2755 std::string name = ex_to<function>(e).get_name();
2758 lst parameter = ex_to<lst>(e.op(0));
2761 // special cases if all parameters are either 0, 1 or -1
2762 bool allthesame = true;
2763 if (parameter.op(0) == 0) {
2764 for (std::size_t i = 1; i < parameter.nops(); i++) {
2765 if (parameter.op(i) != 0) {
2772 for (int i=parameter.nops(); i>0; i--) {
2773 newparameter.append(1);
2775 return pow(-1, parameter.nops()) * H(newparameter, 1-arg).hold();
2777 } else if (parameter.op(0) == -1) {
2778 throw std::runtime_error("map_trafo_H_1mx: cannot handle weights equal -1!");
2780 for (std::size_t i = 1; i < parameter.nops(); i++) {
2781 if (parameter.op(i) != 1) {
2788 for (int i=parameter.nops(); i>0; i--) {
2789 newparameter.append(0);
2791 return pow(-1, parameter.nops()) * H(newparameter, 1-arg).hold();
2795 lst newparameter = parameter;
2796 newparameter.remove_first();
2798 if (parameter.op(0) == 0) {
2801 ex res = convert_H_to_zeta(parameter);
2802 //ex res = convert_from_RV(parameter, 1).subs(H(wild(1),wild(2))==zeta(wild(1)));
2803 map_trafo_H_1mx recursion;
2804 ex buffer = recursion(H(newparameter, arg).hold());
2805 if (is_a<add>(buffer)) {
2806 for (std::size_t i = 0; i < buffer.nops(); i++) {
2807 res -= trafo_H_prepend_one(buffer.op(i), arg);
2810 res -= trafo_H_prepend_one(buffer, arg);
2817 map_trafo_H_1mx recursion;
2818 map_trafo_H_mult unify;
2819 ex res = H(lst(ex(1)), arg).hold() * H(newparameter, arg).hold();
2820 std::size_t firstzero = 0;
2821 while (parameter.op(firstzero) == 1) {
2824 for (std::size_t i = firstzero-1; i < parameter.nops()-1; i++) {
2828 newparameter.append(parameter[j+1]);
2830 newparameter.append(1);
2831 for (; j<parameter.nops()-1; j++) {
2832 newparameter.append(parameter[j+1]);
2834 res -= H(newparameter, arg).hold();
2836 res = recursion(res).expand() / firstzero;
2846 // do x -> 1/x transformation
2847 struct map_trafo_H_1overx : public map_function
2849 ex operator()(const ex& e)
2851 if (is_a<add>(e) || is_a<mul>(e)) {
2852 return e.map(*this);
2855 if (is_a<function>(e)) {
2856 std::string name = ex_to<function>(e).get_name();
2859 lst parameter = ex_to<lst>(e.op(0));
2862 // special cases if all parameters are either 0, 1 or -1
2863 bool allthesame = true;
2864 if (parameter.op(0) == 0) {
2865 for (std::size_t i = 1; i < parameter.nops(); i++) {
2866 if (parameter.op(i) != 0) {
2872 return pow(-1, parameter.nops()) * H(parameter, 1/arg).hold();
2874 } else if (parameter.op(0) == -1) {
2875 for (std::size_t i = 1; i < parameter.nops(); i++) {
2876 if (parameter.op(i) != -1) {
2882 map_trafo_H_mult unify;
2883 return unify((pow(H(lst(ex(-1)),1/arg).hold() - H(lst(ex(0)),1/arg).hold(), parameter.nops())
2884 / factorial(parameter.nops())).expand());
2887 for (std::size_t i = 1; i < parameter.nops(); i++) {
2888 if (parameter.op(i) != 1) {
2894 map_trafo_H_mult unify;
2895 return unify((pow(H(lst(ex(1)),1/arg).hold() + H(lst(ex(0)),1/arg).hold() + H_polesign, parameter.nops())
2896 / factorial(parameter.nops())).expand());
2900 lst newparameter = parameter;
2901 newparameter.remove_first();
2903 if (parameter.op(0) == 0) {
2906 ex res = convert_H_to_zeta(parameter);
2907 map_trafo_H_1overx recursion;
2908 ex buffer = recursion(H(newparameter, arg).hold());
2909 if (is_a<add>(buffer)) {
2910 for (std::size_t i = 0; i < buffer.nops(); i++) {
2911 res += trafo_H_1tx_prepend_zero(buffer.op(i), arg);
2914 res += trafo_H_1tx_prepend_zero(buffer, arg);
2918 } else if (parameter.op(0) == -1) {
2920 // leading negative one
2921 ex res = convert_H_to_zeta(parameter);
2922 map_trafo_H_1overx recursion;
2923 ex buffer = recursion(H(newparameter, arg).hold());
2924 if (is_a<add>(buffer)) {
2925 for (std::size_t i = 0; i < buffer.nops(); i++) {
2926 res += trafo_H_1tx_prepend_zero(buffer.op(i), arg) - trafo_H_1tx_prepend_minusone(buffer.op(i), arg);
2929 res += trafo_H_1tx_prepend_zero(buffer, arg) - trafo_H_1tx_prepend_minusone(buffer, arg);
2936 map_trafo_H_1overx recursion;
2937 map_trafo_H_mult unify;
2938 ex res = H(lst(ex(1)), arg).hold() * H(newparameter, arg).hold();
2939 std::size_t firstzero = 0;
2940 while (parameter.op(firstzero) == 1) {
2943 for (std::size_t i = firstzero-1; i < parameter.nops() - 1; i++) {
2947 newparameter.append(parameter[j+1]);
2949 newparameter.append(1);
2950 for (; j<parameter.nops()-1; j++) {
2951 newparameter.append(parameter[j+1]);
2953 res -= H(newparameter, arg).hold();
2955 res = recursion(res).expand() / firstzero;
2967 // do x -> (1-x)/(1+x) transformation
2968 struct map_trafo_H_1mxt1px : public map_function
2970 ex operator()(const ex& e)
2972 if (is_a<add>(e) || is_a<mul>(e)) {
2973 return e.map(*this);
2976 if (is_a<function>(e)) {
2977 std::string name = ex_to<function>(e).get_name();