]> www.ginac.de Git - ginac.git/blob - check/time_lw_F.cpp
update the compiler info; tell users to avoid GCC 4.3.0
[ginac.git] / check / time_lw_F.cpp
1 /** @file time_lw_F.cpp
2  *
3  *  Test F from the paper "Comparison of Polynomial-Oriented CAS" by Robert H.
4  *  Lewis and Michael Wester. */
5
6 /*
7  *  GiNaC Copyright (C) 1999-2007 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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
22  */
23
24 #include <iostream>
25 #include <vector>
26 #include "ginac.h"
27 #include "timer.h"
28 using namespace std;
29 using namespace GiNaC;
30
31 static unsigned test()
32 {
33         symbol x("x");
34         symbol y("y");
35
36         ex p = expand(pow(pow(x,2)-3*x*y+pow(y,2),4)*pow(3*x-7*y+2,5));
37         ex q = expand(pow(pow(x,2)-3*x*y+pow(y,2),3)*pow(3*x-7*y-2,6));
38         ex result = gcd(p,q);
39         if (result!=expand(pow(pow(x,2)-3*x*y+pow(y,2),3))) {
40                 clog << "gcd(expand((x^2-3*x*y+y^2)^4*(3*x-7*y+2)^5),expand((x^2-3*x*y+y^2)^3*(3*x-7*y-2)^6)) erroneously returned " << result << endl;
41                 return 1;
42         }
43         return 0;
44 }
45
46 unsigned time_lw_F()
47 {
48         unsigned result = 0;
49         unsigned count = 0;
50         timer rolex;
51         double time = .0;
52         
53         cout << "timing Lewis-Wester test F (gcd of 2-var polys)" << flush;
54         
55         rolex.start();
56         // correct for very small times:
57         do {
58                 result = test();
59                 ++count;
60         } while ((time=rolex.read())<0.1 && !result);
61         cout << '.' << flush;
62         cout << time/count << 's' << endl;
63         
64         return result;
65 }
66
67 extern void randomify_symbol_serials();
68
69 int main(int argc, char** argv)
70 {
71         randomify_symbol_serials();
72         cout << setprecision(2) << showpoint;
73         return time_lw_F();
74 }