--
You received this message because you are subscribed to the Google Groups "sympy" group.
To post to this group, send email to sy...@googlegroups.com.
To unsubscribe from this group, send email to sympy+un...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/sympy?hl=en.
As for multiplying by something causing an unevaluated expression to
evaluate, I consider this to be a bug. It no longer does it in master
with 1 (because the constructor ignores the identity), but it will
still do it with any other number.
Aaron Meurer
This will slow parts of SymPy down by quite a bit, so if the
performance is too slow when you do this, you might find the specific
part that is being cached and either modify it to include evaluate in
the cache or remove the caching there. The caching is handled by the
@cacheit decorator.
Aaron Meurer