Updates:
Blockedon: -sympy:2070 -sympy:2626 sympy:2070 sympy:2626
Comment #5 on issue 2710 by [email protected]: Cannot simplify Piecewise
http://code.google.com/p/sympy/issues/detail?id=2710
This seems to have been fixed in the meantime:
In [13]: f = Piecewise((x*(x+y)-y*(x+y), x>0), (x+x-y, True))
In [14]: f
Out[14]:
/x*(x + y) - y*(x + y) for x > 0
<
\ 2*x - y otherwise
In [15]: f.simplify()
Out[15]:
/(x - y)*(x + y) for x > 0
<
\ 2*x - y otherwise
--
You received this message because you are subscribed to the Google Groups
"sympy-issues" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/sympy-issues?hl=en.