On Friday, April 4, 2014 6:44:11 PM UTC+4, Sergey Kirpichev wrote: > > In [13]: f2=Add(x1, Add(x2, -x3, evaluate=False), evaluate=False) > In [14]: f1 > Out[14]: -1.0*x + 0.001*x + 1.1*x >
A little typo, should be: In [13]: f2=Add(x1, Add(x2, -x3, evaluate=False), evaluate=False) In [14]: f2 Out[14]: 0.001*x + -1.0*x + 1.1*x -- You received this message because you are subscribed to the Google Groups "sympy" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/sympy. To view this discussion on the web visit https://groups.google.com/d/msgid/sympy/82a37017-c8c5-4f13-9efe-9b7eba51a85c%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
