1 /** @file time_lw_H.cpp
3 * Test H from the paper "Comparison of Polynomial-Oriented CAS" by Robert H.
4 * Lewis and Michael Wester. */
7 * GiNaC Copyright (C) 1999-2001 Johannes Gutenberg University Mainz, Germany
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.
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.
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
26 static unsigned test(unsigned n)
30 for (unsigned r=0; r<n; ++r)
31 for (unsigned c=0; c<n; ++c)
32 hilbert.set(r,c,numeric(1,r+c+1));
33 ex det = hilbert.determinant();
36 The closed form of the determinant of n x n Hilbert matrices is:
40 | | | pow(factorial(r),2) | | hilbert(r,c) |
46 for (unsigned r=0; r<n; ++r) {
47 hilbdet *= pow(factorial(numeric(r)),2);
48 for (unsigned c=0; c<n; ++c)
49 hilbdet *= hilbert(r,c);
53 clog << "determinant of " << n << "x" << n << " erroneously returned " << det << endl;
59 unsigned time_lw_H(void)
66 cout << "timing Lewis-Wester test H (det of 80x80 Hilbert)" << flush;
67 clog << "-------Lewis-Wester test H (det of 80x80 Hilbert)" << endl;
70 // correct for very small times:
74 } while ((time=rolex.read())<0.1 && !result);
79 clog << "(no output)" << endl;
83 cout << int(1000*(time/count))*0.001 << 's' << endl;