From: Jens Vollinga Date: Sat, 17 Apr 2004 16:10:14 +0000 (+0000) Subject: Add check for log-bug. X-Git-Tag: release_1-3-0~87 X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=commitdiff_plain;h=e8f0a62c637afab747ba93dfd8b127a7d5df24ec;hp=4405b29465293f3b6ab37745ff601f519b0256e2 Add check for log-bug. --- diff --git a/check/exam_pseries.cpp b/check/exam_pseries.cpp index 7ec803f8..93d78684 100644 --- a/check/exam_pseries.cpp +++ b/check/exam_pseries.cpp @@ -124,6 +124,11 @@ static unsigned exam_series1() d = pow(x, 2) + Order(pow(x, 3)); result += check_series(e, 0, d, 3); + symbol b("b"); + e = log(a*x + b*x*x*log(x)); + d = log(a*x) + b/a*log(x)*x - pow(b/a, 2)/2*pow(log(x)*x, 2) + Order(pow(x, 3)); + result += check_series(e, 0, d, 3); + return result; }