> > On a related note. At the moment mutability is contagious. I would > rather have it other way. Have I missed any discussions on this topic? >
There weren't any serious discussions on the topic. It's easy to change in the matrices.classof function > Also, sympify now works with ImmutableMatrices but it still fails on > MutableMatrices. Is there a fundamental reason behind that? > It's not clear what sympify should do to a MutableMatrix? One option is to turn it into an ImmutableMatrix. If you do this then x*eye(3) isn't mutable because x will try to sympify it eye(3). > > -- > You received this message because you are subscribed to the Google Groups > "sympy" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group at > http://groups.google.com/group/sympy?hl=en. > > -- You received this message because you are subscribed to the Google Groups "sympy" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/sympy?hl=en.
