X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=check%2Fnumeric_output.cpp;h=b98d61f043d9a51caa96ff22f889ffda3b6488a2;hp=f35663ea217ba6efda9941e4547c8bcfd2078d7d;hb=b08505c6c50a4c0310d096cb62774ccd53db7b0a;hpb=c10054835b4c63a95b37703a952d663f280aa1ce;ds=sidebyside diff --git a/check/numeric_output.cpp b/check/numeric_output.cpp index f35663ea..b98d61f0 100644 --- a/check/numeric_output.cpp +++ b/check/numeric_output.cpp @@ -1,6 +1,30 @@ -// check/numeric_output.cpp +/** @file numeric_output.cpp + * + * Test output of numeric types. */ -#include +/* + * GiNaC Copyright (C) 1999 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 + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +#include + +#ifndef NO_GINAC_NAMESPACE +using namespace GiNaC; +#endif // ndef NO_GINAC_NAMESPACE unsigned numeric_output(void) { @@ -10,7 +34,7 @@ unsigned numeric_output(void) clog << "---------output of numeric types:" << endl; unsigned long Digits_before = Digits; - Digits = 200; + Digits = 222; clog << "Using " << Digits << " digits" << endl; clog << Pi << " evalfs to: " << Pi.evalf() << endl; clog << Catalan << " evalfs to: " << Catalan.evalf() << endl;