]> www.ginac.de Git - ginac.git/blob - check/time_lw_E.cpp
* Really remove silly acronyms. The fucking network breakdown this
[ginac.git] / check / time_lw_E.cpp
1 /** @file time_lw_E.cpp
2  *
3  *  Test E from the paper "Comparison of Polynomial-Oriented CAS" by Robert H.
4  *  Lewis and Michael Wester. */
5
6 /*
7  *  GiNaC Copyright (C) 1999-2001 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 "times.h"
25
26 static unsigned test(void)
27 {
28         ex s;
29         symbol y("y");
30         symbol t("t");
31         
32         for (int i=1; i<=10; ++i)
33                 s += i*y*pow(t,i)/pow(y + abs(5-i)*t,i);
34         
35         s = s.normal();
36         
37         if (s.subs(t==0)!=0) {
38                 clog << "something very strange happened" << endl;
39                 return 1;
40         }
41         return 0;
42 }
43
44 unsigned time_lw_E(void)
45 {
46         unsigned result = 0;
47         unsigned count = 0;
48         timer rolex;
49         double time = .0;
50         
51         cout << "timing Lewis-Wester test E (normalized sum of rational fcns)" << flush;
52         clog << "-------Lewis-Wester test E (normalized sum of rational fcns)" << endl;
53         
54         rolex.start();
55         // correct for very small times:
56         do {
57                 result = test();
58                 ++count;
59         } while ((time=rolex.read())<0.1 && !result);
60         cout << '.' << flush;
61         
62         if (!result) {
63                 cout << " passed ";
64                 clog << "(no output)" << endl;
65         } else {
66                 cout << " failed ";
67         }
68         cout << int(1000*(time/count))*0.001 << 's' << endl;
69         
70         return result;
71 }