]> www.ginac.de Git - ginac.git/blobdiff - check/time_dennyfliegner.cpp
Finalize 1.7.6 release.
[ginac.git] / check / time_dennyfliegner.cpp
index aca6e0e4271fe2dd8de647ee055fb796a9ef1966..15f11bd2a4060d045f68d149a1171e5f351f8c30 100644 (file)
@@ -7,7 +7,7 @@
  *  after which e should be just a1^2. */
 
 /*
- *  GiNaC Copyright (C) 1999-2007 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
  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
+#include "ginac.h"
+#include "timer.h"
+using namespace GiNaC;
+
 #include <iostream>
 #include <sstream>
 #include <vector>
-#include "ginac.h"
-#include "timer.h"
 using namespace std;
-using namespace GiNaC;
 
 static unsigned expand_subs(unsigned size)
 {
@@ -65,15 +66,10 @@ unsigned time_dennyfliegner()
        
        cout << "timing commutative expansion and substitution" << flush;
        
-       vector<unsigned> sizes;
+       vector<unsigned> sizes = {100, 200, 400, 800};
        vector<double> times;
        timer breitling;
        
-       sizes.push_back(100);
-       sizes.push_back(200);
-       sizes.push_back(400);
-       sizes.push_back(800);
-       
        for (vector<unsigned>::iterator i=sizes.begin(); i!=sizes.end(); ++i) {
                breitling.start();
                result += expand_subs(*i);