X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=check%2Ftime_dennyfliegner.cpp;h=e8f025a52cc337de02e4286d96931b1da8a68786;hp=66531bdcb2170e3dd8349b75ef36041a35bf64b9;hb=b5483c25af5d84095ca647390914e3fb63ad96a0;hpb=68fdf425abf14d016d5f95ee7b9d06a19a3c5926 diff --git a/check/time_dennyfliegner.cpp b/check/time_dennyfliegner.cpp index 66531bdc..e8f025a5 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-2003 Johannes Gutenberg University Mainz, Germany + * GiNaC Copyright (C) 1999-2004 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 " @@ -64,10 +64,10 @@ unsigned time_dennyfliegner() vector times; timer breitling; - sizes.push_back(25); sizes.push_back(50); sizes.push_back(100); sizes.push_back(200); + sizes.push_back(400); for (vector::iterator i=sizes.begin(); i!=sizes.end(); ++i) { breitling.start();