]> www.ginac.de Git - ginac.git/blobdiff - check/exam_paranoia.cpp
Make it possible to override info() for functions.
[ginac.git] / check / exam_paranoia.cpp
index 5fdfb350dab6165fda50c0a7558535010ebbaee8..52d261c8b46712962084e373de2de19ae28603c2 100644 (file)
@@ -494,6 +494,24 @@ static unsigned exam_paranoia19()
        return 0;
 }
 
+// Bug in expairseq::is_polynomial (fixed 2011-05-20).
+static unsigned exam_paranoia20()
+{
+       unsigned result = 0;
+       symbol x("x");
+       ex e1 = sqrt(x*x+1)*sqrt(x+1);
+       if (e1.is_polynomial(x)) {
+               clog << "sqrt(x*x+1)*sqrt(x+1) is wrongly reported to be a polynomial in x\n";
+               ++result;
+       }
+       ex e2 = sqrt(Pi)*x;
+       if (!e2.is_polynomial(x)) {
+               clog << "sqrt(Pi)*x is wrongly reported to be no polynomial in x\n";
+               ++result;
+       }
+       return result;
+}
+
 unsigned exam_paranoia()
 {
        unsigned result = 0;
@@ -519,6 +537,7 @@ unsigned exam_paranoia()
        result += exam_paranoia17();  cout << '.' << flush;
        result += exam_paranoia18();  cout << '.' << flush;
        result += exam_paranoia19();  cout << '.' << flush;
+       result += exam_paranoia20();  cout << '.' << flush;
        
        return result;
 }