]> www.ginac.de Git - ginac.git/blobdiff - check/exam_normalization.cpp
Adapted exam for Alexei's gcd patch.
[ginac.git] / check / exam_normalization.cpp
index d02b98efb2fb338f111fc03f7ad17151fb35765b..c0a2e232735287e8bdc33cf017565e35998db54b 100644 (file)
@@ -81,7 +81,7 @@ static unsigned exam_normal2()
        result += check_normal(e, d);
        
        e = (pow(x, 2) - pow(y, 2)) / pow(x-y, 3);
-       d = (x + y) / (pow(x, 2) + pow(y, 2) - x * y * 2);
+       d = (x + y) / pow(x - y, 2);
        result += check_normal(e, d);
        
        e = (pow(x, -1) + x) / (pow(x , 2) * 2 + 2);
@@ -90,7 +90,7 @@ static unsigned exam_normal2()
        
        // Fraction cancellation with rational coefficients
        e = (pow(x, 2) - pow(y, 2)) / pow(x/2 - y/2, 3);
-       d = (8 * x + 8 * y) / (pow(x, 2) + pow(y, 2) - x * y * 2);
+       d = (8 * x + 8 * y) / pow(x - y, 2);
        result += check_normal(e, d);
        
        // Fraction cancellation with rational coefficients