X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=check%2Fcheck_numeric.cpp;h=6c14623f71bd018652b53c7d9622993b74820026;hp=34c183526777856b6af9cb543fc8a20a0d7a8e6c;hb=e0a84a395ab1bf84813eea95fde9c8a361dae9bc;hpb=e7cc6a764ff67b5885d6633385fac23ccc1dc9a7 diff --git a/check/check_numeric.cpp b/check/check_numeric.cpp index 34c18352..6c14623f 100644 --- a/check/check_numeric.cpp +++ b/check/check_numeric.cpp @@ -1,10 +1,10 @@ /** @file check_numeric.cpp * - * These exams creates some numbers and check the result of several boolean + * These exams creates some numbers and check the result of several Boolean * tests on these numbers like is_integer() etc... */ /* - * GiNaC Copyright (C) 1999-2002 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 @@ -18,14 +18,19 @@ * * 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 + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#include "checks.h" +#include "ginac.h" +using namespace GiNaC; + +#include // for rand() +#include +using namespace std; /* Simple and maybe somewhat pointless consistency tests of assorted tests and * conversions. */ -static unsigned check_numeric1(void) +static unsigned check_numeric1() { unsigned result = 0; bool errorflag = false; @@ -53,7 +58,7 @@ static unsigned check_numeric1(void) return result; } -static unsigned check_numeric2(void) +static unsigned check_numeric2() { unsigned result = 0; bool errorflag = false; @@ -105,22 +110,19 @@ static unsigned check_numeric2(void) return result; } -unsigned check_numeric(void) +unsigned check_numeric() { unsigned result = 0; cout << "checking consistency of numeric types" << flush; - clog << "---------consistency of numeric types:" << endl; result += check_numeric1(); cout << '.' << flush; result += check_numeric2(); cout << '.' << flush; - if (!result) { - cout << " passed " << endl; - clog << "(no output)" << endl; - } else { - cout << " failed " << endl; - } - return result; } + +int main(int argc, char** argv) +{ + return check_numeric(); +}