Hi, Yes, that is a typo, if you'd like to submit a PR on github we'd be happy to merge it. Thanks for finding it.
Sean On Wed, Aug 19, 2015 at 10:09 AM, <[email protected]> wrote: > I found a wrong expression to indicate a variable in "Wigner6j.doit()". > > Original in Sympy version 0.7.6: > def doit(self, **hints): > if self.is_symbolic: > raise ValueError("Coefficients must be numerical") > return wigner_6j(self.j1, self.j2, self.j12, self.j3, self.j, > self.j3) > > Revised: > def doit(self, **hints): > if self.is_symbolic: > raise ValueError("Coefficients must be numerical") > return wigner_6j(self.j1, self.j2, self.j12, self.j3, self.j, > self.j23) > > This bug may be a simple typo... > > -- > 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/c4b2a5ef-4259-4519-972d-988945dbfae5%40googlegroups.com > <https://groups.google.com/d/msgid/sympy/c4b2a5ef-4259-4519-972d-988945dbfae5%40googlegroups.com?utm_medium=email&utm_source=footer> > . > For more options, visit https://groups.google.com/d/optout. > -- 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/CALNFbO%3D822e871qk77rShkvOXR6d4OCBpY_S885f%2BkbwAq0O3Q%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
