]> www.ginac.de Git - ginac.git/blobdiff - check/exam_paranoia.cpp
Clean up check suite a little bit.
[ginac.git] / check / exam_paranoia.cpp
index c5f5514959a81d002691b571ebfd2ed32c77ef3c..7977bd2e88f5440990f2c4b389237f726a0cb1f3 100644 (file)
@@ -6,7 +6,7 @@
  *  these oopses for good, so we run those stupid tests... */
 
 /*
- *  GiNaC Copyright (C) 1999-2019 Johannes Gutenberg University Mainz, Germany
+ *  GiNaC Copyright (C) 1999-2020 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
@@ -504,6 +504,17 @@ static unsigned exam_paranoia20()
        return result;
 }
 
+static unsigned exam_mul_info()
+{
+       symbol x("x"), y("y");
+       ex e = x*y;
+       if (!e.info(info_flags::indefinite)) {
+               clog << "eek, product of two symbols is NOT indefinite\n";
+               return 1;
+       }
+       return 0;
+}
+
 static unsigned is_polynomial_false_positive()
 {
        unsigned result = 0;
@@ -623,6 +634,56 @@ static unsigned exam_paranoia24()
        return result;
 }
 
+// Bug in add ctor
+unsigned exam_paranoia25()
+{
+       symbol a("a"), b("b"), c("c");
+       ex e = -a + 2*b + c;
+
+       if (e.diff(c).nops() > 1) {
+               clog << "diff(" << e << ",c) was not fully evaluated.\n";
+               return 1;
+       }
+       return 0;
+}
+
+// Bug in partial fraction expansion
+unsigned exam_paranoia26()
+{
+       symbol x("x");
+       ex ex1=pow(x,4)/(x-1)/4;
+       ex ex2=sqrfree_parfrac(ex1,x);
+       ex e = (ex1-ex2).normal();
+
+       if (! e.is_zero()) {
+               clog << "partial fraction expansion of " << ex1 << " produces error.\n";
+               return 1;
+       }
+       return 0;
+}
+
+// Bug in power expansion
+unsigned exam_paranoia27()
+{
+       unsigned result = 0;
+       symbol x("x"), y("y"), a("a");
+       possymbol s("s"), t("t");
+       exmap pwrs =
+         { {pow((x+1)*(y-2)*(s-3)*(t+4), a), pow((x+1)*(y-2)*(s-3), a)*pow(t+4, a)},
+           {pow(2*(x+1)*(y-2)*(s-3)*(t+4), a), pow(2,a)*pow((x+1)*(y-2)*(s-3), a)*pow(t+4, a)},
+           {pow(-(x+1)*(y-2)*(s-3)*(t+4), a), pow(-(x+1)*(y-2)*(s-3), a)*pow(t+4, a)},
+           {pow(-2*(x+1)*(y-2)*(s-3)*(t+4), a), pow(2,a)*pow(-(x+1)*(y-2)*(s-3), a)*pow(t+4, a)} };
+
+       for (auto e : pwrs) {
+               if (! (e.first.expand()).is_equal(e.second) ) {
+                       clog << "power expansion of " << e.first << " produces error.\n";
+                       ++result;
+               }
+       }
+
+       return result;
+}
+
 unsigned exam_paranoia()
 {
        unsigned result = 0;
@@ -649,11 +710,15 @@ unsigned exam_paranoia()
        result += exam_paranoia18();  cout << '.' << flush;
        result += exam_paranoia19();  cout << '.' << flush;
        result += exam_paranoia20();  cout << '.' << flush;
+       result += exam_mul_info(); cout << '.' << flush;
        result += is_polynomial_false_positive(); cout << '.' << flush;
        result += exam_paranoia21();  cout << '.' << flush;
        result += exam_paranoia22();  cout << '.' << flush;
        result += exam_paranoia23();  cout << '.' << flush;
        result += exam_paranoia24();  cout << '.' << flush;
+       result += exam_paranoia25();  cout << '.' << flush;
+       result += exam_paranoia26();  cout << '.' << flush;
+       result += exam_paranoia27();  cout << '.' << flush;
        
        return result;
 }