Updates:
        Labels: NeedsReview smichr

Comment #1 on issue 1099 by smi...@gmail.com: collect sometimes doesn't collect inside brackets
http://code.google.com/p/sympy/issues/detail?id=1099

https://github.com/sympy/sympy/pull/664

collect_terms(x**2 + y*x**2 + x*y + y + a*y, *[x, y])
x**2*(y + 1) + y*(a + x + 1)
f = x*(y*z+y)
collect_terms(f)
x*y*(z + 1)
f1=f+1
collect_terms(f1)
x*y*(z + 1) + 1


--
You received this message because you are subscribed to the Google Groups 
"sympy-issues" group.
To post to this group, send email to sympy-issues@googlegroups.com.
To unsubscribe from this group, send email to 
sympy-issues+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sympy-issues?hl=en.

Reply via email to