X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=check%2Fexam_factor.cpp;h=bf1751a572c02e7bf1cb13e0cad5d12514bbb78c;hp=ed064588e11bbabb42ff14829a946bfa42f89ec5;hb=37c418c602485be9b023378a1b60ebdb4a592f2a;hpb=114449ae6f2cd3151d9b8342c570db021a9e892c diff --git a/check/exam_factor.cpp b/check/exam_factor.cpp index ed064588..bf1751a5 100644 --- a/check/exam_factor.cpp +++ b/check/exam_factor.cpp @@ -58,6 +58,9 @@ static unsigned exam_factor1() e = ex("(1+x)^3", syms); result += check_factor(e); + e = ex("(x+1)*(x+4)", syms); + result += check_factor(e); + e = ex("x^6-3*x^5+x^4-3*x^3-x^2-3*x+1", syms); result += check_factor(e); @@ -79,7 +82,11 @@ static unsigned exam_factor1() e = ex("x^8-40*x^6+352*x^4-960*x^2+576", syms); result += check_factor(e); - e = ex("x*(2+x^2)*(1+x+x^3+x^2+x^6+x^5+x^4)*(1+x^3)^2*(-1+x)", syms); + e = ex("x*(2+x^2)*(1+x+x^3+x^2+x^6+x^5+x^4)*(1+x)^2*(1-x+x^2)^2*(-1+x)", syms); + + result += check_factor(e); + + e = ex("(x+4+x^2-x^3+43*x^4)*(x+1-x^2-3*x^3+4*x^4)", syms); result += check_factor(e); return result;