]> www.ginac.de Git - ginac.git/blobdiff - check/time_dennyfliegner.cpp
- added registry for print_context classes (use print_context_class_info::dump_hierar...
[ginac.git] / check / time_dennyfliegner.cpp
index 07ebbe6fa2fdd3084596c0cd0d9b97436858e203..5920b4336ffd4639b3ddc9c96d5c990706a4b99c 100644 (file)
@@ -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-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
@@ -42,7 +42,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,7 +53,7 @@ static unsigned expand_subs(unsigned size)
        return result;
 }
 
-unsigned time_dennyfliegner(void)
+unsigned time_dennyfliegner()
 {
        unsigned result = 0;
        
@@ -64,10 +64,10 @@ unsigned time_dennyfliegner(void)
        vector<double> times;
        timer breitling;
        
-       sizes.push_back(25);
        sizes.push_back(50);
        sizes.push_back(100);
        sizes.push_back(200);
+       sizes.push_back(500);
        
        for (vector<unsigned>::iterator i=sizes.begin(); i!=sizes.end(); ++i) {
                breitling.start();