]> www.ginac.de Git - ginac.git/blobdiff - check/time_dennyfliegner.cpp
Finalize 1.7.6 release.
[ginac.git] / check / time_dennyfliegner.cpp
index e248a73da4509d71faca49d5847b97dbe23edff8..15f11bd2a4060d045f68d149a1171e5f351f8c30 100644 (file)
@@ -7,7 +7,7 @@
  *  after which e should be just a1^2. */
 
 /*
- *  GiNaC Copyright (C) 1999-2005 Johannes Gutenberg University Mainz, Germany
+ *  GiNaC Copyright (C) 1999-2019 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
  *
  *  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 "ginac.h"
+#include "timer.h"
+using namespace GiNaC;
+
+#include <iostream>
+#include <sstream>
+#include <vector>
+using namespace std;
 
 static unsigned expand_subs(unsigned size)
 {
@@ -58,17 +65,11 @@ unsigned time_dennyfliegner()
        unsigned result = 0;
        
        cout << "timing commutative expansion and substitution" << flush;
-       clog << "-------commutative expansion and substitution:" << endl;
        
-       vector<unsigned> sizes;
+       vector<unsigned> sizes = {100, 200, 400, 800};
        vector<double> times;
        timer breitling;
        
-       sizes.push_back(50);
-       sizes.push_back(100);
-       sizes.push_back(200);
-       sizes.push_back(400);
-       
        for (vector<unsigned>::iterator i=sizes.begin(); i!=sizes.end(); ++i) {
                breitling.start();
                result += expand_subs(*i);
@@ -76,20 +77,23 @@ unsigned time_dennyfliegner()
                cout << '.' << flush;
        }
        
-       if (!result) {
-               cout << " passed ";
-               clog << "(no output)" << endl;
-       } else {
-               cout << " failed ";
-       }
        // print the report:
        cout << endl << "       size:  ";
        for (vector<unsigned>::iterator i=sizes.begin(); i!=sizes.end(); ++i)
-               cout << '\t' << (*i);
+               cout << '\t' << *i;
        cout << endl << "       time/s:";
        for (vector<double>::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();
+}