X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=check%2Ftime_dennyfliegner.cpp;h=ac24a345ad3150f0b1fa71828d8b4f5c35c4ca3d;hp=ea3b7be5abe9b812175a596ee8fbfccc16b23b77;hb=cf34003f731d75bf9b9b6469c466de73f036b750;hpb=1f5afe37b4c079821de9810435fa9fa11e4ea17b diff --git a/check/time_dennyfliegner.cpp b/check/time_dennyfliegner.cpp index ea3b7be5..ac24a345 100644 --- a/check/time_dennyfliegner.cpp +++ b/check/time_dennyfliegner.cpp @@ -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 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();