X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?a=blobdiff_plain;f=check%2Fexam_misc.cpp;h=1da10b784e2a75ab9bf551e6d695fd5dfa366e71;hb=1f5afe37b4c079821de9810435fa9fa11e4ea17b;hp=3b2ff8eac6679bb9b3271b5ae1b3d599f55655bc;hpb=fcc1f605535081bfcee74dc1a154839e10b807ef;p=ginac.git diff --git a/check/exam_misc.cpp b/check/exam_misc.cpp index 3b2ff8ea..1da10b78 100644 --- a/check/exam_misc.cpp +++ b/check/exam_misc.cpp @@ -3,7 +3,7 @@ */ /* - * GiNaC Copyright (C) 1999-2001 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 @@ -27,20 +27,17 @@ static unsigned exam_expand_subs(void) { unsigned result = 0; - symbol a1("a1"); symbol a[VECSIZE]; ex e, aux; - a[1] = a1; - for (unsigned i=0; i(selfprobe)) { + clog << "ex (of numeric) after self-assignment became " << selfprobe << endl; + ++result; + } + + return result; +} + +/* This checks whether subs() works as intended in some special cases. */ +static unsigned exam_subs(void) +{ + unsigned result = 0; + symbol x("x"); + ex e1, e2; + + // This used to fail in GiNaC 1.0.5 because it first substituted + // x+1 -> (x-1)+1 -> x, and then substituted again x -> x-1, giving + // the wrong result + e1 = x+1; + e2 = e1.subs(x == x-1); + if (!e2.is_equal(x)) { + clog << "(x+1).subs(x==x-1) erroneously returned " << e2 << " instead of x" << endl; + ++result; + } + + e1 = sin(1+sin(x)); + e2 = e1.subs(sin(wild()) == cos(wild())); + if (!e2.is_equal(cos(1+cos(x)))) { + clog << "sin(1+sin(x)).subs(sin($1)==cos($1)) erroneously returned " << e2 << " instead of cos(1+cos(x))" << endl; + ++result; + } + + return result; +} + unsigned exam_misc(void) { unsigned result = 0; @@ -99,6 +236,9 @@ unsigned exam_misc(void) result += exam_expand_subs(); cout << '.' << flush; result += exam_expand_subs2(); cout << '.' << flush; result += exam_expand_power(); cout << '.' << flush; + result += exam_sqrfree(); cout << '.' << flush; + result += exam_operator_semantics(); cout << '.' << flush; + result += exam_subs(); cout << '.' << flush; if (!result) { cout << " passed " << endl;