X-Git-Url: https://ginac.de/CLN/cln.git//cln.git?a=blobdiff_plain;ds=sidebyside;f=tests%2Ftimepi.cc;h=3889f64e157743084806852dd949bc89910cce80;hb=684ae5ac173cba2b80173348b225ba4dc2ece6a4;hp=bb88b9a3d5f177fe5ef6d38611806d52903f2498;hpb=850abfde7f0d985ba01526c346bcd0d733562943;p=cln.git diff --git a/tests/timepi.cc b/tests/timepi.cc index bb88b9a..3889f64 100644 --- a/tests/timepi.cc +++ b/tests/timepi.cc @@ -4,8 +4,8 @@ #include #include #include -#include -#include +#include +#include #include using namespace std; @@ -52,9 +52,9 @@ int main (int argc, char * argv[]) int n = atoi(argv[1]); float_format_t prec = float_format(n); cl_F p; - stderr << "Computing pi" << endl; + cerr << "Computing pi" << endl; { CL_TIMING; p = pi(prec); } - stderr << "Converting pi to decimal" << endl; + cerr << "Converting pi to decimal" << endl; { CL_TIMING; cout << p << endl << endl; } #endif }