Updates:
        Labels: Simplify

Comment #1 on issue 3226 by asmeu...@gmail.com: high-order derivatives should be cse-simplified
http://code.google.com/p/sympy/issues/detail?id=3226

If we do this right, it can also make it more efficient. The derivative of g(f(x)) + h(f(x)) is f'(x)*g'(f(x)) + f'(x)*h'(f(x)), but this can also be written as f'(x)*(g'(f(x)) + h'(f(x))), which is not only simpler, but only requires computing f'(x) once.

By the way, what is csesimp()? That doesn't appear to be part of the git master.

--
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