X-Git-Url: https://ginac.de/ginac.git//ginac.git?a=blobdiff_plain;ds=inline;f=check%2Ftime_gammaseries.cpp;h=fc3bac235163f529d152c291457398bad767729d;hb=67ce3e7263c01ffa9d6df8d31d4d5506776f3bf7;hp=3ff55d68dd120d1221b9fa593efb54655cace126;hpb=619d77d2676f7f1a562fb9fefc0ba6754fe2d750;p=ginac.git diff --git a/check/time_gammaseries.cpp b/check/time_gammaseries.cpp index 3ff55d68..fc3bac23 100644 --- a/check/time_gammaseries.cpp +++ b/check/time_gammaseries.cpp @@ -3,7 +3,7 @@ * Some timings on series expansion of the Gamma function around a pole. */ /* - * GiNaC Copyright (C) 1999-2007 Johannes Gutenberg University Mainz, Germany + * GiNaC Copyright (C) 1999-2015 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 @@ -20,20 +20,26 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#include "times.h" +#include "ginac.h" +#include "timer.h" +using namespace GiNaC; + +#include +#include +using namespace std; unsigned tgammaseries(unsigned order) { unsigned result = 0; symbol x; - ex myseries = series(tgamma(x),x==0,order); + ex myseries = series(GiNaC::tgamma(x),x==0,order); // compute the last coefficient numerically: ex last_coeff = myseries.coeff(x,order-1).evalf(); // compute a bound for that coefficient using a variation of the leading // term in Stirling's formula: ex bound = exp(-.57721566490153286*(order-1))/(order-1); - if (abs((last_coeff-pow(-1,order))/bound) > 1) { + if (abs((last_coeff-pow(-1,ex(order)))/bound) > 1) { clog << "The " << order-1 << "th order coefficient in the power series expansion of tgamma(0) was erroneously found to be " << last_coeff << ", violating a simple estimate." << endl; @@ -48,7 +54,6 @@ unsigned time_gammaseries() unsigned result = 0; cout << "timing Laurent series expansion of Gamma function" << flush; - clog << "-------Laurent series expansion of Gamma function:" << endl; vector sizes; vector times; @@ -66,12 +71,6 @@ unsigned time_gammaseries() cout << '.' << flush; } - if (!result) { - cout << " passed "; - clog << "(no output)" << endl; - } else { - cout << " failed "; - } // print the report: cout << endl << " order: "; for (vector::iterator i=sizes.begin(); i!=sizes.end(); ++i) @@ -83,3 +82,12 @@ unsigned time_gammaseries() return result; } + +extern void randomify_symbol_serials(); + +int main(int argc, char** argv) +{ + randomify_symbol_serials(); + cout << setprecision(2) << showpoint; + return time_gammaseries(); +}