]> www.ginac.de Git - ginac.git/blobdiff - check/time_lw_O.cpp
some functions that took a "const symbol &" now take a "const ex &"
[ginac.git] / check / time_lw_O.cpp
index d36771048fe943c0fe844c30b1c58d8e27068827..f24016d524104ff13108da5c250fdac36433b6c3 100644 (file)
@@ -4,7 +4,7 @@
  *  Lewis and Michael Wester. */
 
 /*
- *  GiNaC Copyright (C) 1999-2001 Johannes Gutenberg University Mainz, Germany
+ *  GiNaC Copyright (C) 1999-2003 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
@@ -23,7 +23,9 @@
 
 #include "times.h"
 
-static unsigned test1(void)
+static const bool do_test = true;  // set to true in order to run this beast
+
+static unsigned test1()
 {
        symbol a1("a1"), a2("a2"), a3("a3"), a4("a4"), a5("a5"), a6("a6");
        symbol b1("b1"), b2("b2"), b3("b3"), b4("b4"), b5("b5"), b6("b6");
@@ -98,7 +100,7 @@ static unsigned test1(void)
        return 0;
 }
 
-unsigned time_lw_O(void)
+unsigned time_lw_O()
 {
        unsigned result = 0;
        unsigned count = 0;
@@ -106,22 +108,27 @@ unsigned time_lw_O(void)
        double time = .0;
        
        cout << "timing Lewis-Wester test O1 (three 15x15 dets)" << flush;
-       clog << "-------Lewis-Wester test O1 (three 15x15 dets)" << endl;
-       
-       rolex.start();
-       // correct for very small times:
-       do {
-               result = test1();
-               ++count;
-       } while ((time=rolex.read())<0.1 && !result);
+       clog << "-------Lewis-Wester test O1 (three 15x15 dets):" << endl;
        
-       if (!result) {
-               cout << " passed ";
-               clog << "(no output)" << endl;
+       if (do_test) {
+               rolex.start();
+               // correct for very small times:
+               do {
+                       result = test1();
+                       ++count;
+               } while ((time=rolex.read())<0.1 && !result);
+               
+               if (!result) {
+                       cout << " passed ";
+                       clog << "(no output)" << endl;
+               } else {
+                       cout << " failed ";
+               }
+               cout << int(1000*(time/(3*count)))*0.001 << "s (average)" << endl;
        } else {
-               cout << " failed ";
+               cout << " disabled" << endl;
+               clog << "(no output)" << endl;
        }
-       cout << int(1000*(time/(3*count)))*0.001 << "s (average)" << endl;
        
        return result;
 }