Spotted by Claude:
(%i1) declare(a, scalar, c, [constant, scalar])$ (%i2) is(a+c = c+a); (%o2) false (%i3) ordergreatp(a, c); (%o3) false (%i4) ordergreatp(c, a); (%o4) false
%o2 looks like a simplus bug. Shouldn't a+c and c+a both simplify to c+a?
simplus relies great to decide where the terms have to be placed in the resulting sum. In this case, great doesn't work correctly.
simplus
great
Log in to post a comment.
%o2 looks like a simplus bug.
Shouldn't a+c and c+a both simplify to c+a?
simplusreliesgreatto decide where the terms have to be placed in the resulting sum. In this case,greatdoesn't work correctly.