X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=check%2Fexam_normalization.cpp;h=0aafa4999437ef695ecf92d5685445c5fc14bac3;hp=50d717dabc3e767b9c0fbde27889cc81214f37a7;hb=a775c17c710b9fbca130b2f638a0f463b8b56585;hpb=af922d5eb36ed70e4a9e3ffaf4c24492cf89a1a6 diff --git a/check/exam_normalization.cpp b/check/exam_normalization.cpp index 50d717da..0aafa499 100644 --- a/check/exam_normalization.cpp +++ b/check/exam_normalization.cpp @@ -3,7 +3,7 @@ * Rational function normalization test suite. */ /* - * GiNaC Copyright (C) 1999-2000 Johannes Gutenberg University Mainz, Germany + * GiNaC Copyright (C) 1999-2003 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 @@ -29,13 +29,13 @@ static unsigned check_normal(const ex &e, const ex &d) ex en = e.normal(); if (en.compare(d) != 0) { clog << "normal form of " << e << " erroneously returned " - << en << " (should be " << d << ")" << endl; + << en << " (should be " << d << ")" << endl; return 1; } return 0; } -static unsigned exam_normal1(void) +static unsigned exam_normal1() { unsigned result = 0; ex e, d; @@ -62,7 +62,7 @@ static unsigned exam_normal1(void) return result; } -static unsigned exam_normal2(void) +static unsigned exam_normal2() { unsigned result = 0; ex e, d; @@ -101,7 +101,7 @@ static unsigned exam_normal2(void) return result; } -static unsigned exam_normal3(void) +static unsigned exam_normal3() { unsigned result = 0; ex e, d; @@ -124,7 +124,7 @@ static unsigned exam_normal3(void) return result; } -static unsigned exam_normal4(void) +static unsigned exam_normal4() { unsigned result = 0; ex e, d; @@ -157,7 +157,7 @@ static unsigned exam_normal4(void) return result; } -unsigned exam_normalization(void) +unsigned exam_normalization() { unsigned result = 0;