X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=check%2Fnumeric_output.cpp;h=6b3a2599e2d2303fda03074a1e343f6a60cc5f64;hp=c480676870f73d1f33a4cc2c6d9e0fffd685410c;hb=0cc840f49d87e01b31ad5a848a8bf5470ea43275;hpb=6b3768e8c544739ae53321539cb4d1e3112ded1b diff --git a/check/numeric_output.cpp b/check/numeric_output.cpp index c4806768..6b3a2599 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-2000 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 "ginac.h" + +#ifndef NO_NAMESPACE_GINAC +using namespace GiNaC; +#endif // ndef NO_NAMESPACE_GINAC 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;