]> www.ginac.de Git - ginac.git/blob - check/time_lw_C.cpp
Fixed bug in unvariate factorization. Bound for lifting was using a ordinary
[ginac.git] / check / time_lw_C.cpp
1 /** @file time_lw_C.cpp
2  *
3  *  Test C from the paper "Comparison of Polynomial-Oriented CAS" by Robert H.
4  *  Lewis and Michael Wester. */
5
6 /*
7  *  GiNaC Copyright (C) 1999-2008 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         numeric x(13*17*31);
34         numeric y(13*19*29);
35         
36         for (int i=1; i<200; ++i)
37                 gcd(pow(x,300+(i%181)),pow(y,200+(i%183)));
38         
39         ex lastgcd = gcd(pow(x,300+(200%181)),pow(y,200+(200%183)));
40         if (lastgcd != numeric("53174994123961114423610399251974962981084780166115806651505844915220196792416194060680805428433601792982500430324916963290494659936522782673704312949880308677990050199363768068005367578752699785180694630122629259539608472261461289805919741933")) {
41                 clog << "gcd(" << x << "^" << 300+(200%181) << ","
42                      << y << "^" << 200+(200%183) << ") erroneously returned "
43                      << lastgcd << endl;
44                 return 1;
45         }
46         return 0;
47 }
48
49 unsigned time_lw_C()
50 {
51         unsigned result = 0;
52         unsigned count = 0;
53         timer rolex;
54         double time = .0;
55         
56         cout << "timing Lewis-Wester test C (gcd of big integers)" << flush;
57         
58         rolex.start();
59         // correct for very small times:
60         do {
61                 result = test();
62                 ++count;
63         } while ((time=rolex.read())<0.1 && !result);
64         cout << '.' << flush;
65         cout << time/count << 's' << endl;
66         
67         return result;
68 }
69
70 extern void randomify_symbol_serials();
71
72 int main(int argc, char** argv)
73 {
74         randomify_symbol_serials();
75         cout << setprecision(2) << showpoint;
76         return time_lw_C();
77 }