From: Richard Kreckel Date: Thu, 20 Sep 2001 21:42:17 +0000 (+0000) Subject: - minor fix in error log. X-Git-Tag: release_0-9-4~1 X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=commitdiff_plain;h=45355e89c34795306f493fe46613ac66d55ab89a - minor fix in error log. --- diff --git a/check/time_antipode.cpp b/check/time_antipode.cpp index 712b90be..43d4da49 100644 --- a/check/time_antipode.cpp +++ b/check/time_antipode.cpp @@ -464,8 +464,10 @@ static unsigned test_tree(const node (*tree_generator)(unsigned=0)) return 1; } else if (result.ldegree(x)!=-vertices || result.degree(x)!=0) { clog << "The antipode was miscalculated\nAntipode==" << result - << "\nshould run from x^(" << -vertices << ") to x^(0) but it runs from x^(" - << result.ldegree(x) << ") to x^(" << result.degree(x) << ")" << endl; + << "\nshould run from " << x << "^(" << -vertices << ") to " + << x << "^(0)" << "but it runs from " << x << "^(" + << result.ldegree(x) << ")" << "to " << x << "^(" + << result.degree(x) << ")" << endl; return 1; } return 0;