]> www.ginac.de Git - ginac.git/blob - check/time_lw_P.cpp
- expressions can now be read from streams; the input expression can contain
[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-2000 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 #include "time_lw_w101n.h"
26
27 static unsigned test(void)
28 {
29     matrix m(101,101);
30     for (unsigned r=0; r<101; ++r) {
31         for (unsigned c=0; c<10; ++c) {
32             m.set(r,
33                   unsigned(ex_to_numeric(w101_numeric[r][2*c+1]).to_int()-1),
34                   w101_numeric[r][2*c+2]);
35         }
36     }
37     ex det = m.determinant();
38     
39     if (det!=numeric("75810815066186520")) {
40         clog << "det of sparse rank 101 matrix erroneously returned " << det << endl;
41         return 1;
42     }
43     return 0;
44 }
45
46 unsigned time_lw_P(void)
47 {
48     unsigned result = 0;
49     unsigned count = 0;
50     timer rolex;
51     double time = .0;
52     
53     cout << "timing Lewis-Wester test P (det of sparse rank 101)" << flush;
54     clog << "-------Lewis-Wester test P (det of sparse rank 101)" << endl;
55     
56     rolex.start();
57     // correct for very small times:
58     do {
59         result = test();
60         ++count;
61     } while ((time=rolex.read())<0.1 && !result);
62     cout << '.' << flush;
63     
64     if (!result) {
65         cout << " passed ";
66         clog << "(no output)" << endl;
67     } else {
68         cout << " failed ";
69     }
70     cout << int(1000*(time/count))*0.001 << 's' << endl;
71     
72     return result;
73 }