]> www.ginac.de Git - ginac.git/blob - check/time_lw_A.cpp
2fa40c92b1e1fe928edf14daecb2de3ff431155e
[ginac.git] / check / time_lw_A.cpp
1 /** @file time_lw_A.cpp
2  *
3  *  Test A 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
26 static unsigned test(void)
27 {
28     for (int i=1; i<=99; ++i)
29         factorial(1000+i)/factorial(900+i);
30     ex rat(factorial(1100)/factorial(1000));
31     
32     if (abs(evalf(rat)-numeric(".13280014101512E303"))>numeric("1.0E289")) {
33         clog << "1100!/1000! erroneously returned " << rat << endl;
34         return 1;
35     }
36     return 0;
37 }
38
39 unsigned time_lw_A(void)
40 {
41     unsigned result = 0;
42     unsigned count = 0;
43     timer rolex;
44     double time = .0;
45     
46     cout << "timing Lewis-Wester test A (divide factorials)" << flush;
47     clog << "-------Lewis-Wester test A (divide factorials)" << endl;
48     
49     rolex.start();
50     // correct for very small times:
51     do {
52         result = test();
53         ++count;
54     } while ((time=rolex.read())<0.1 && !result);
55     cout << '.' << flush;
56     
57     if (!result) {
58         cout << " passed ";
59         clog << "(no output)" << endl;
60     } else {
61         cout << " failed ";
62     }
63     cout << int(1000*(time/count))*0.001 << 's' << endl;
64     
65     return result;
66 }