From: Richard Kreckel Date: Fri, 7 Sep 2001 22:53:06 +0000 (+0000) Subject: - Make some tests more stringent and meaningful. X-Git-Tag: release_0-9-4~7 X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=commitdiff_plain;h=559c3bfd89b822b16708b23af1b0d9af17ededfe - Make some tests more stringent and meaningful. --- diff --git a/check/time_lw_O.cpp b/check/time_lw_O.cpp index fd2667cc..1f419f8e 100644 --- a/check/time_lw_O.cpp +++ b/check/time_lw_O.cpp @@ -23,7 +23,7 @@ #include "times.h" -static const bool do_test = false; // set to true in order to run this beast +static const bool do_test = true; // set to true in order to run this beast static unsigned test1(void) { diff --git a/check/time_toeplitz.cpp b/check/time_toeplitz.cpp index d6cf21f9..51089f03 100644 --- a/check/time_toeplitz.cpp +++ b/check/time_toeplitz.cpp @@ -28,18 +28,19 @@ static unsigned toeplitz_det(unsigned size) { unsigned result = 0; - symbol a("a"), b("b"); - ex p[8] = {a, - b, - a+b, - pow(a,2) + a*b + pow(b,2), - pow(a,3) + pow(a,2)*b - a*pow(b,2) + pow(b,3), - pow(a,4) + pow(a,3)*b + pow(a*b,2) + a*pow(b,3) + pow(b,4), - pow(a,5) + pow(a,4)*b + pow(a,3)*pow(b,2) - pow(a,2)*pow(b,3) + a*pow(b,4) + pow(b,5), - pow(a,6) + pow(a,5)*b + pow(a,4)*pow(b,2) + pow(a*b,3) + pow(a,2)*pow(b,4) + a*pow(b,5) + pow(b,6) + const symbol a("a"), b("b"); + ex p[9] = {ex("a",lst(a,b)), + ex("b",lst(a,b)), + ex("a+b",lst(a,b)), + ex("a^2+a*b+b^2",lst(a,b)), + ex("a^3+a^2*b-a*b^2+b^3",lst(a,b)), + ex("a^4+a^3*b+a^2*b^2+a*b^3+b^4",lst(a,b)), + ex("a^5+a^4*b+a^3*b^2-a^2*b^3+a*b^4+b^5",lst(a,b)), + ex("a^6+a^5*b+a^4*b^2+a^3*b^3+a^2*b^4+a*b^5+b^6",lst(a,b)), + ex("a^7+a^6*b+a^5*b^2+a^4*b^3-a^3*b^4+a^2*b^5+a*b^6+b^7",lst(a,b)) }; - - // construct Toeplitz matrix: + + // construct Toeplitz matrix (diagonal structure: [[x,y,z],[y,x,y],[z,y,x]]): matrix M(size,size); for (unsigned ro=0; ro sizes; vector times; timer longines; - - sizes.push_back(5); + sizes.push_back(6); sizes.push_back(7); sizes.push_back(8); - + sizes.push_back(9); + for (vector::iterator i=sizes.begin(); i!=sizes.end(); ++i) { int count = 1; longines.start(); @@ -90,7 +91,7 @@ unsigned time_toeplitz(void) times.push_back(longines.read()/count); cout << '.' << flush; } - + if (!result) { cout << " passed "; clog << "(no output)" << endl; @@ -105,6 +106,6 @@ unsigned time_toeplitz(void) for (vector::iterator i=times.begin(); i!=times.end(); ++i) cout << '\t' << int(1000*(*i))*0.001; cout << endl; - + return result; } diff --git a/check/time_vandermonde.cpp b/check/time_vandermonde.cpp index b190e218..33ffd65f 100644 --- a/check/time_vandermonde.cpp +++ b/check/time_vandermonde.cpp @@ -29,7 +29,7 @@ static unsigned vandermonde_det(unsigned size) { unsigned result = 0; - symbol a("a"); + const symbol a("a"); // construct Vandermonde matrix: matrix M(size,size); @@ -72,10 +72,10 @@ unsigned time_vandermonde(void) vector times; timer swatch; - sizes.push_back(4); sizes.push_back(6); sizes.push_back(8); sizes.push_back(10); + sizes.push_back(12); for (vector::iterator i=sizes.begin(); i!=sizes.end(); ++i) { int count = 1;