]> www.ginac.de Git - ginac.git/blob - check/time_lw_P.cpp
match: don't modify subexpression list if expression doesn't match the pattern.
[ginac.git] / check / time_lw_P.cpp
1 /** @file time_lw_P.cpp
2  *
3  *  Test P 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         // This is a pattern that comes up in graph theory:
34         const unsigned n = 10;
35         matrix m(n*n+1,n*n+1);
36         for (unsigned i=1; i<=n*n; ++i)
37                 m.set(i-1,i-1,1);
38         for (unsigned i=1; i<=n*n; ++i)
39                 if (!(i%n))
40                         m.set(i-1,n*n,1);
41         for (unsigned i=1; i<=n*n; ++i)
42                 if (!((i-1)%n))
43                         m.set(n*n,i-1,n-(i-1)/n);
44         for(unsigned i=1; i<=n; ++i)
45                 for (unsigned j=1; j<=n; ++j)
46                         if (i-j)
47                                 for (unsigned k=1; k<n; ++k)
48                                         m.set((i-1)*n+k-1,(j-1)*n+k,n+1-j);
49         
50         ex det = m.determinant();
51         
52         if (det!=numeric("75810815066186520")) {
53                 clog << "det of sparse rank 101 matrix erroneously returned " << det << endl;
54                 return 1;
55         }
56         return 0;
57 }
58
59 unsigned time_lw_P()
60 {
61         unsigned result = 0;
62         unsigned count = 0;
63         timer rolex;
64         double time = .0;
65         
66         cout << "timing Lewis-Wester test P (det of sparse rank 101)" << flush;
67         
68         rolex.start();
69         // correct for very small times:
70         do {
71                 result = test();
72                 ++count;
73         } while ((time=rolex.read())<0.1 && !result);
74         cout << time/count << 's' << endl;
75         
76         return result;
77 }
78
79 extern void randomify_symbol_serials();
80
81 int main(int argc, char** argv)
82 {
83         randomify_symbol_serials();
84         cout << setprecision(2) << showpoint;
85         return time_lw_P();
86 }