X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=check%2Ftime_dennyfliegner.cpp;h=07a8938ca2389a54bc3317f59ce58595b5bad9ec;hp=07ebbe6fa2fdd3084596c0cd0d9b97436858e203;hb=581244b7b8fc9b5f81291e1a3f5731939e3f3d8e;hpb=0c8c12f5393a7ca5f78233af5ee81593184c35fb diff --git a/check/time_dennyfliegner.cpp b/check/time_dennyfliegner.cpp index 07ebbe6f..07a8938c 100644 --- a/check/time_dennyfliegner.cpp +++ b/check/time_dennyfliegner.cpp @@ -7,7 +7,7 @@ * after which e should be just a1^2. */ /* - * GiNaC Copyright (C) 1999-2001 Johannes Gutenberg University Mainz, Germany + * GiNaC Copyright (C) 1999-2008 Johannes Gutenberg University Mainz, Germany * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -21,10 +21,16 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#include "times.h" +#include +#include +#include +#include "ginac.h" +#include "timer.h" +using namespace std; +using namespace GiNaC; static unsigned expand_subs(unsigned size) { @@ -42,7 +48,7 @@ static unsigned expand_subs(unsigned size) // prepare aux so it will swallow anything but a1^2: aux = -e + a[0] + a[1]; - e = pow(e,2).expand().subs(a[0]==aux).expand(); + e = pow(e,2).expand().subs(a[0]==aux, subs_options::no_pattern).expand(); if (e != pow(a[1],2)) { clog << "Denny Fliegner's quick consistency check erroneously returned " @@ -53,21 +59,20 @@ static unsigned expand_subs(unsigned size) return result; } -unsigned time_dennyfliegner(void) +unsigned time_dennyfliegner() { unsigned result = 0; cout << "timing commutative expansion and substitution" << flush; - clog << "-------commutative expansion and substitution:" << endl; vector sizes; vector times; timer breitling; - sizes.push_back(25); - sizes.push_back(50); sizes.push_back(100); sizes.push_back(200); + sizes.push_back(400); + sizes.push_back(800); for (vector::iterator i=sizes.begin(); i!=sizes.end(); ++i) { breitling.start(); @@ -76,20 +81,23 @@ unsigned time_dennyfliegner(void) cout << '.' << flush; } - if (!result) { - cout << " passed "; - clog << "(no output)" << endl; - } else { - cout << " failed "; - } // print the report: cout << endl << " size: "; for (vector::iterator i=sizes.begin(); i!=sizes.end(); ++i) - cout << '\t' << (*i); + cout << '\t' << *i; cout << endl << " time/s:"; for (vector::iterator i=times.begin(); i!=times.end(); ++i) - cout << '\t' << int(1000*(*i))*0.001; + cout << '\t' << *i; cout << endl; return result; } + +extern void randomify_symbol_serials(); + +int main(int argc, char** argv) +{ + randomify_symbol_serials(); + cout << setprecision(2) << showpoint; + return time_dennyfliegner(); +}