Am 10.11.2013 21:34, schrieb F. B.:
I just checked, *Add* inherits both *Expr* and *AssocOp*, both of which on the other hand inherit *Basic*. So, unfortunately, SymPy does use multiple inheritance and presents the diamond problem, which is likely to be solved by Python's C3 algorithm.
Hm. Not a problem if the same function isn't overridden in both Expr and AssocOp, so maybe... hopefully...
... but yes, that's going to have to be considered for multiple dispatch. -- 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. For more options, visit https://groups.google.com/groups/opt_out.
