No, there is no way. You can use evaluate=False, when creating expressions, but it will help partly.
For example, Add(4*x*y,-6*x*y, evaluate=False) will output -6xy+4xy (notice order changed), but Add(4*x*y,-6*x*y) will output -2xy On Tuesday, March 31, 2015 at 5:40:31 PM UTC+3, Milos Bogataj wrote: > > Is it possible to work with raw symbolic expressions without any > simplifications/evaluations? > e.g: If I have an expression: 2*((x)), I would like to keep it as it is > without Sympy changing it to 2*x. > Cheers, > Milos > -- 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/7d6454c7-046a-4290-a8ee-88f4459ede70%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
