]> www.ginac.de Git - ginac.git/blobdiff - check/time_gammaseries.cpp
- Updated to the optimized version. This allows us to
[ginac.git] / check / time_gammaseries.cpp
index 59a08a9faeefd23b5a3ad5eaca6de62148f998df..3c1ef6856cb8f1af8e227e8120a5f687bc0beec5 100644 (file)
@@ -3,7 +3,7 @@
  *  Some timings on series expansion of the Gamma function around a pole. */
 
 /*
- *  GiNaC Copyright (C) 1999-2000 Johannes Gutenberg University Mainz, Germany
+ *  GiNaC Copyright (C) 1999-2001 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
@@ -35,8 +35,8 @@ unsigned tgammaseries(unsigned order)
        ex bound = evalf(exp(ex(-.57721566490153286*(order-1)))/(order-1));
        if (evalf(abs((last_coeff-pow(-1,order))/bound)) > numeric(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;
+                    << "th order coefficient in the power series expansion of tgamma(0) was erroneously found to be "
+                    << last_coeff << ", violating a simple estimate." << endl;
                ++result;
        }