1 /** @file exam_inifcns_nstdsums.cpp
3 * This test routine applies assorted tests on initially known higher level
7 * GiNaC Copyright (C) 1999-2007 Johannes Gutenberg University Mainz, Germany
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
28 using namespace GiNaC;
32 ////////////////////////////////////////////////////////////////////////////////
33 ////////////////////////////////////////////////////////////////////////////////
35 ////////////////////////////////////////////////////////////////////////////////
36 ////////////////////////////////////////////////////////////////////////////////
40 * The data in the following include file has been produced by the following
41 * Mathematica (V4.1) script:
44 * x={2/10,1,14/10,30/10}
46 * st = OpenAppend["exam_inifcns_nstdsums_data.raw"]
47 * $NumberMarks = False
50 * Do[Write[st, i]; Write[st,j]; Write[st,x[[k]]+I*y[[l]]];
51 * Write[st,Chop[N[PolyLog[i,j,x[[k]]+I*y[[l]]],25]]],{i,3},{j,3}], {k,4}],{l,3}]
54 * Do[Write[st, i]; Write[st,j]; Write[st,-x[[k]]+I*y[[l]]];
55 * Write[st,Chop[N[PolyLog[i,j,-x[[k]]+I*y[[l]]],25]]],{i,3},{j,3}], {k,4}], {l,3}]
59 * and postprocessed by the following shell script
64 * cat exam_inifcns_nstdsums_data.raw | sed -e 's/\*\^/E/g' > exam_inifcns_nstdsums_data.raw2
65 * echo 'const char *data[] = {' > exam_inifcns_nstdsums_data.raw3
66 * for i in `cat exam_inifcns_nstdsums_data.raw2`; do echo \"$i\",; done >> exam_inifcns_nstdsums_data.raw3
67 * echo '"-999"};' >> exam_inifcns_nstdsums.h
71 #include "exam_inifcns_nstdsums.h"
74 // signals end of data
75 const int ENDMARK = -999;
78 static unsigned inifcns_test_S()
80 int digitsbuf = Digits;
83 ex prec = 5 * pow(10, -(int)Digits);
89 ex n(data[i++],symbol());
93 ex p(data[i++],symbol());
94 ex x(data[i++],symbol());
95 ex res(data[i++],symbol());
96 ex res2 = S(n, p, x).evalf();
97 if (abs(res-res2) > prec) {
98 clog << "S(" << n << "," << p << "," << x << ") seems to be wrong:" << endl;
99 clog << "GiNaC : " << res2 << endl;
100 clog << "Reference : " << res << endl;
101 clog << "Abs. Difference : " << res2-res << endl;
103 ex reldiff = abs((res2-res)/res2);
104 clog << "Rel. Difference : " << reldiff << endl;
109 cout << "." << flush;
119 ////////////////////////////////////////////////////////////////////////////////
120 ////////////////////////////////////////////////////////////////////////////////
122 ////////////////////////////////////////////////////////////////////////////////
123 ////////////////////////////////////////////////////////////////////////////////
126 static unsigned inifcns_test_HLi()
128 int digitsbuf = Digits;
130 ex prec = 5 * pow(10, -(int)Digits);
131 numeric almostone("0.999999999999999999");
136 res.append(H(lst(2,1),numeric(1)/2).hold() - (zeta(3)/8 - pow(log(2),3)/6));
137 res.append(H(lst(2,1,3),numeric(1)/3).hold() - Li(lst(2,1,3),lst(numeric(1)/3,1,1)).hold());
138 res.append(H(lst(2,1,3),numeric(98)/100).hold() - Li(lst(2,1,3),lst(numeric(98)/100,1,1)).hold());
139 res.append(H(lst(2,1,3),numeric(245)/100).hold() - Li(lst(2,1,3),lst(numeric(245)/100,1,1)).hold());
140 res.append(H(lst(4,1,1,1),numeric(1)/3).hold() - S(3,4,numeric(1)/3).hold());
141 res.append(H(lst(4,1,1,1),numeric(98)/100).hold() - S(3,4,numeric(98)/100).hold());
142 res.append(H(lst(4,1,1,1),numeric(245)/100).hold() - S(3,4,numeric(245)/100).hold());
143 res.append(H(lst(2,2,3),almostone).hold() - zeta(lst(2,2,3)));
144 res.append(H(lst(-3,-1,2,1),almostone).hold() - zeta(lst(3,1,2,1),lst(-1,1,-1,1)));
145 res.append(H(lst(-2,1,3),numeric(1)/3).hold() - -Li(lst(2,1,3),lst(-numeric(1)/3,-1,1)).hold());
146 res.append(H(lst(-2,1,3),numeric(98)/100).hold() - -Li(lst(2,1,3),lst(-numeric(98)/100,-1,1)).hold());
147 res.append(H(lst(-2,1,3),numeric(245)/100).hold() - -Li(lst(2,1,3),lst(-numeric(245)/100,-1,1)).hold());
148 res.append(H(lst(-3,1,-2,0,0),numeric(3)/10).hold() - convert_H_to_Li(lst(-3,1,-2,0,0),numeric(3)/10).eval());
150 for (lst::const_iterator it = res.begin(); it != res.end(); it++) {
151 ex diff = abs((*it).evalf());
153 clog << *it << " seems to be wrong: " << diff << endl;
156 cout << "." << flush;
162 numeric cdif = ex_to<numeric>(H(lst(2,2,1),5.0-5.0*I) - H(lst(2,2,1),5.0+5.0*I));
163 numeric cadd = ex_to<numeric>(H(lst(2,2,1),5.0-5.0*I) + H(lst(2,2,1),5.0+5.0*I));
164 if ((cdif.real() > prec) || (cadd.imag() > prec)) {
165 clog << "complex conjugation test of H({2,2,1},5.0-5.0*I) seems to be wrong: " << cdif << " " << cadd << endl;
173 ////////////////////////////////////////////////////////////////////////////////
174 ////////////////////////////////////////////////////////////////////////////////
176 ////////////////////////////////////////////////////////////////////////////////
177 ////////////////////////////////////////////////////////////////////////////////
180 static unsigned inifcns_test_zeta()
182 int digitsbuf = Digits;
188 res.append(zeta(lst(2,1)) - zeta(3));
189 res.append(zeta(lst(2,1,1,1,1)) - zeta(6));
190 res.append(zeta(lst(6,3)) - (zeta(9)*83/2 - zeta(2)*zeta(7)*21 - zeta(2)*zeta(2)*zeta(5)*12/5));
191 res.append(zeta(lst(4,2,3)) - (-zeta(9)*59 + zeta(2)*zeta(7)*28 + pow(zeta(2),2)*zeta(5)*4 -
192 pow(zeta(3),3)/3 + pow(zeta(2),3)*zeta(3)*8/21));
193 res.append(zeta(lst(3,1,3,1,3,1,3,1)) - (2*pow(Pi,16)/factorial(18)));
194 res.append(zeta(lst(2),lst(-1)) - -zeta(2)/2);
195 res.append(zeta(lst(1,2),lst(-1,1)) - (-zeta(3)/4 - zeta(lst(1),lst(-1))*zeta(2)/2));
196 res.append(zeta(lst(2,1,1),lst(-1,-1,1)) - (-pow(zeta(2),2)*23/40 - pow(zeta(lst(1),lst(-1)),2)*zeta(2)*3/4
197 - zeta(lst(3,1),lst(-1,1))*3/2 - zeta(lst(1),lst(-1))*zeta(3)*21/8));
199 for (lst::const_iterator it = res.begin(); it != res.end(); it++) {
201 ex prec = 5 * pow(10, -(int)Digits);
202 ex diff = abs((*it).evalf());
204 clog << *it << " seems to be wrong: " << diff << endl;
205 clog << "Digits: " << Digits << endl;
208 cout << "." << flush;
210 prec = 5 * pow(10, -(int)Digits);
211 diff = abs((*it).evalf());
213 clog << *it << " seems to be wrong: " << diff << endl;
214 clog << "Digits: " << Digits << endl;
217 cout << "." << flush;
226 ////////////////////////////////////////////////////////////////////////////////
227 ////////////////////////////////////////////////////////////////////////////////
229 ////////////////////////////////////////////////////////////////////////////////
230 ////////////////////////////////////////////////////////////////////////////////
233 static unsigned inifcns_test_LiG()
235 int digitsbuf = Digits;
237 ex prec = 5 * pow(10, -(int)Digits);
238 numeric almostone("0.99999999999999999999");
243 res.append(Li(lst(4), lst(6)).hold() - Li(4, 6.0));
244 res.append(G(lst(0,0,5.0,0,2.0,0,0,0,3.0),0.5).hold()
245 + Li(lst(3,2,4), lst(numeric(1,10), numeric(5,2), numeric(2,3))));
246 res.append(Li(lst(2,1,1), lst(almostone, almostone, almostone)) - zeta(lst(2,1,1)));
248 // check Li_{1,1} against known expression
249 symbol x("x"), y("y");
251 ex s1 = Li(lst(1,1),lst(x,y));
252 ex s2 = log(1-1/x/y-eps)*log((1-1/x-eps)/(1/x/y-1/x)) + Li(2,(1-1/x/y-eps)/(1/x-1/x/y))
253 - log(-1/x/y-eps)*log((-1/x-eps)/(1/x/y-1/x)) - Li(2,(-1/x/y-eps)/(1/x-1/x/y))
254 - log(-1/x/y-eps)*log(1-1/x-eps) + log(-1/x/y-eps)*log(-1/x-eps);
255 res.append(s1.subs(lst(x==numeric(1)/2, y==3)) - s2.subs(lst(x==numeric(1)/2, y==3)));
256 res.append(s1.subs(lst(x==numeric(3)/2, y==numeric(1)/2)) - s2.subs(lst(x==numeric(3)/2, y==numeric(1)/2)));
257 res.append(s1.subs(lst(x==2, y==numeric(4)/5)) - s2.subs(lst(x==2, y==numeric(4)/5)));
259 // shuffle and quasi-shuffle identities
260 res.append(G(lst(0,0.2),1).hold() * G(lst(0.5),1).hold() - G(lst(0.5,0,0.2),1).hold()
261 - G(lst(0,0.5,0.2),1).hold() - G(lst(0,0.2,0.5),1).hold());
262 res.append(G(lst(0,0.5),1).hold() * G(lst(0.6),1).hold() - G(lst(0,0.5,0.5*0.6),1).hold()
263 - G(lst(0.6,0,0.5*0.6),1).hold() + G(lst(0,0,0.5*0.6),1).hold());
264 res.append(Li(lst(2),lst(numeric(1,5))).hold() * Li(lst(3),lst(7)).hold() - Li(lst(2,3),lst(numeric(1,5),7)).hold()
265 - Li(lst(3,2),lst(7,numeric(1,5))).hold() - Li(lst(5),lst(numeric(7,5))).hold());
266 symbol a1, a2, a3, a4;
267 res.append((G(lst(a1,a2),1) * G(lst(a3,a4),1) - G(lst(a1,a2,a3,a4),1)
268 - G(lst(a1,a3,a2,a4),1) - G(lst(a3,a1,a2,a4),1)
269 - G(lst(a1,a3,a4,a2),1) - G(lst(a3,a1,a4,a2),1) - G(lst(a3,a4,a1,a2),1))
270 .subs(lst(a1==numeric(1)/10, a2==numeric(3)/10, a3==numeric(7)/10, a4==5)));
271 res.append(G(lst(-0.009),1).hold() * G(lst(-8,1.4999),1).hold() - G(lst(-0.009,-8,1.4999),1).hold()
272 - G(lst(-8,-0.009,1.4999),1).hold() - G(lst(-8,1.4999,-0.009),1).hold());
273 res.append(G(lst(sqrt(numeric(1)/2)+I*sqrt(numeric(1)/2)),1).hold() * G(lst(1.51,-0.999),1).hold()
274 - G(lst(sqrt(numeric(1)/2)+I*sqrt(numeric(1)/2),1.51,-0.999),1).hold()
275 - G(lst(1.51,sqrt(numeric(1)/2)+I*sqrt(numeric(1)/2),-0.999),1).hold()
276 - G(lst(1.51,-0.999,sqrt(numeric(1)/2)+I*sqrt(numeric(1)/2)),1).hold());
277 // checks for hoelder convolution which is used if one argument has a distance to one smaller than 0.01
278 res.append(G(lst(0, 1.2, 1, 1.01), 1).hold() - G(lst(0, 1.2, 1, numeric("1.009999999999999999")), 1).hold());
280 for (lst::const_iterator it = res.begin(); it != res.end(); it++) {
281 ex diff = abs((*it).evalf());
283 clog << *it << " seems to be wrong: " << diff << endl;
286 cout << "." << flush;
293 unsigned exam_inifcns_nstdsums(void)
297 cout << "examining consistency of nestedsums functions" << flush;
299 result += inifcns_test_zeta();
300 result += inifcns_test_S();
301 result += inifcns_test_HLi();
302 result += inifcns_test_LiG();
307 int main(int argc, char** argv)
309 return exam_inifcns_nstdsums();