]> www.ginac.de Git - ginac.git/blob - check/exam_inifcns_nstdsums.cpp
Synced to HEAD.
[ginac.git] / check / exam_inifcns_nstdsums.cpp
1 /** @file exam_inifcns_nstdsums.cpp
2  *
3  *  This test routine applies assorted tests on initially known higher level
4  *  functions. */
5
6 /*
7  *  GiNaC Copyright (C) 1999-2003 Johannes Gutenberg University Mainz, Germany
8  *
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.
13  *
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.
18  *
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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
22  */
23
24 #include "exams.h"
25
26 #include <fstream>
27
28
29 ////////////////////////////////////////////////////////////////////////////////
30 ////////////////////////////////////////////////////////////////////////////////
31 //  S exam
32 ////////////////////////////////////////////////////////////////////////////////
33 ////////////////////////////////////////////////////////////////////////////////
34
35
36 /*
37  * The data in the following include file has been produced by the following
38  * Mathematica (V4.1) script:
39  *
40  *
41  *    x={2/10,1,14/10,30/10}
42  *    y={0,3/10,-14/10}
43  *    st = OpenAppend["exam_inifcns_nstdsums_data.raw"]
44  *    $NumberMarks = False
45  *    Do[
46  *      Do[
47  *        Do[Write[st, i]; Write[st,j]; Write[st,x[[k]]+I*y[[l]]];
48  *          Write[st,Chop[N[PolyLog[i,j,x[[k]]+I*y[[l]]],25]]],{i,3},{j,3}], {k,4}],{l,3}]
49  *    Do[
50  *      Do[
51  *        Do[Write[st, i]; Write[st,j]; Write[st,-x[[k]]+I*y[[l]]];
52  *          Write[st,Chop[N[PolyLog[i,j,-x[[k]]+I*y[[l]]],25]]],{i,3},{j,3}], {k,4}], {l,3}]
53  *    Close[st]
54  *
55  *    
56  * and postprocessed by the following shell script
57  *
58  *
59  *    #/bin/sh
60  *    IFS=$'\n'
61  *    cat exam_inifcns_nstdsums_data.raw | sed -e 's/\*\^/E/g' > exam_inifcns_nstdsums_data.raw2
62  *    echo 'const char *data[] = {' > exam_inifcns_nstdsums_data.raw3
63  *    for i in `cat exam_inifcns_nstdsums_data.raw2`; do echo \"$i\",; done >> exam_inifcns_nstdsums_data.raw3
64  *    echo '"-999"};' >> exam_inifcns_nstdsums.h
65  *
66  *
67  */
68 #include "exam_inifcns_nstdsums.h"
69
70
71 // signals end of data
72 const int ENDMARK = -999;
73
74
75 static unsigned inifcns_test_S()
76 {
77         int digitsbuf = Digits;
78         // precision of data
79         Digits = 22;
80         ex prec = 5 * pow(10, -(int)Digits);
81         
82         unsigned result = 0;
83         
84         int i = 0;
85         while (true) {
86                 ex n(data[i++],symbol());
87                 if (n == ENDMARK) {
88                         break;
89                 }
90                 ex p(data[i++],symbol());
91                 ex x(data[i++],symbol());
92                 ex res(data[i++],symbol());
93                 ex res2 = S(n, p, x).evalf();
94                 if (abs(res-res2) > prec) {
95                         clog << "S(" << n << "," << p << "," << x << ") seems to be wrong:" << endl;
96                         clog << "GiNaC           : " << res2 << endl;
97                         clog << "Reference       : " << res << endl;
98                         clog << "Abs. Difference : " << res2-res << endl;
99                         if (res2 != 0) {
100                                 ex reldiff = abs((res2-res)/res2);
101                                 clog << "Rel. Difference : " << reldiff << endl;
102                         }
103                         result++;
104                 }
105                 if (i % 80) {
106                         cout << "." << flush;
107                 }
108         }
109
110         Digits = digitsbuf;
111
112         return result;
113 }
114
115
116 ////////////////////////////////////////////////////////////////////////////////
117 ////////////////////////////////////////////////////////////////////////////////
118 //  H/Li exam
119 ////////////////////////////////////////////////////////////////////////////////
120 ////////////////////////////////////////////////////////////////////////////////
121
122
123 static unsigned inifcns_test_HLi()
124 {
125         int digitsbuf = Digits;
126         Digits = 17;
127         ex prec = 5 * pow(10, -(int)Digits);
128         numeric almostone("0.999999999999999999");
129         unsigned result = 0;
130
131         lst res;
132         
133         res.append(H(lst(2,1),numeric(1)/2).hold() - (zeta(3)/8 - pow(log(2),3)/6));
134         res.append(H(lst(2,1,3),numeric(1)/3).hold() - Li(lst(2,1,3),lst(numeric(1)/3,1,1)).hold());
135         res.append(H(lst(2,1,3),numeric(98)/100).hold() - Li(lst(2,1,3),lst(numeric(98)/100,1,1)).hold());
136         res.append(H(lst(2,1,3),numeric(245)/100).hold() - Li(lst(2,1,3),lst(numeric(245)/100,1,1)).hold());
137         res.append(H(lst(4,1,1,1),numeric(1)/3).hold() - S(3,4,numeric(1)/3).hold());
138         res.append(H(lst(4,1,1,1),numeric(98)/100).hold() - S(3,4,numeric(98)/100).hold());
139         res.append(H(lst(4,1,1,1),numeric(245)/100).hold() - S(3,4,numeric(245)/100).hold());
140         res.append(H(lst(2,2,3),almostone).hold() - zeta(lst(2,2,3)));
141         res.append(H(lst(-3,-1,2,1),almostone).hold() - zeta(lst(3,1,2,1),lst(-1,1,-1,1)));
142         res.append(H(lst(-2,1,3),numeric(1)/3).hold() - -Li(lst(2,1,3),lst(-numeric(1)/3,-1,1)).hold());
143         res.append(H(lst(-2,1,3),numeric(98)/100).hold() - -Li(lst(2,1,3),lst(-numeric(98)/100,-1,1)).hold());
144         res.append(H(lst(-2,1,3),numeric(245)/100).hold() - -Li(lst(2,1,3),lst(-numeric(245)/100,-1,1)).hold());
145         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());
146         
147         for (lst::const_iterator it = res.begin(); it != res.end(); it++) {
148                 ex diff = abs((*it).evalf());
149                 if (diff > prec) {
150                         clog << *it << " seems to be wrong: " << diff << endl;
151                         result++;
152                 }
153                 cout << "." << flush;
154         }
155
156         Digits = digitsbuf;
157
158         return result;
159 }
160
161
162 ////////////////////////////////////////////////////////////////////////////////
163 ////////////////////////////////////////////////////////////////////////////////
164 //  zeta exam
165 ////////////////////////////////////////////////////////////////////////////////
166 ////////////////////////////////////////////////////////////////////////////////
167
168
169 static unsigned inifcns_test_zeta()
170 {
171         int digitsbuf = Digits;
172         
173         unsigned result = 0;
174
175         lst res;
176         
177         res.append(zeta(lst(2,1)) - zeta(3));
178         res.append(zeta(lst(2,1,1,1,1)) - zeta(6));
179         res.append(zeta(lst(6,3)) - (zeta(9)*83/2 - zeta(2)*zeta(7)*21 - zeta(2)*zeta(2)*zeta(5)*12/5));
180         res.append(zeta(lst(4,2,3)) - (-zeta(9)*59 + zeta(2)*zeta(7)*28 + pow(zeta(2),2)*zeta(5)*4 -
181                                        pow(zeta(3),3)/3 + pow(zeta(2),3)*zeta(3)*8/21));
182         res.append(zeta(lst(3,1,3,1,3,1,3,1)) - (2*pow(Pi,16)/factorial(18)));
183         res.append(zeta(lst(2),lst(-1)) - -zeta(2)/2);
184         res.append(zeta(lst(1,2),lst(-1,1)) - (-zeta(3)/4 - zeta(lst(1),lst(-1))*zeta(2)/2));
185         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
186                                                     - zeta(lst(3,1),lst(-1,1))*3/2 - zeta(lst(1),lst(-1))*zeta(3)*21/8));
187         
188         for (lst::const_iterator it = res.begin(); it != res.end(); it++) {
189                 Digits = 17;
190                 ex prec = 5 * pow(10, -(int)Digits);
191                 ex diff = abs((*it).evalf());
192                 if (diff > prec) {
193                         clog << *it << " seems to be wrong: " << diff << endl;
194                         clog << "Digits: " << Digits << endl;
195                         result++;
196                 }
197                 cout << "." << flush;
198                 Digits = 40;
199                 prec = 5 * pow(10, -(int)Digits);
200                 diff = abs((*it).evalf());
201                 if (diff > prec) {
202                         clog << *it << " seems to be wrong: " << diff << endl;
203                         clog << "Digits: " << Digits << endl;
204                         result++;
205                 }
206                 cout << "." << flush;
207         }
208
209         Digits = digitsbuf;
210
211         return result;
212 }
213
214
215 unsigned exam_inifcns_nstdsums(void)
216 {
217         unsigned result = 0;
218         
219         cout << "examining consistency of nestedsums functions" << flush;
220         clog << "----------consistency of nestedsums functions:" << endl;
221         
222         result += inifcns_test_zeta();
223         result += inifcns_test_S();
224         result += inifcns_test_HLi();
225         
226         if (!result) {
227                 cout << " passed " << endl;
228                 clog << "(no output)" << endl;
229         } else {
230                 cout << " failed " << endl;
231         }
232         
233         return result;
234 }