Comment #3 on issue 3243 by [email protected]: solve() returns answer with Dummys
http://code.google.com/p/sympy/issues/detail?id=3243
This is potentially a problem in nfloat where the dummy exponents are introduced, but it is also perhaps bit-dependent. Are you running in 64 bit? I don't get the failure here:
f=S('alpha*lamda + lamda**3*(alpha/2 + 1/2) + lamda**2 + 1/4').subs(alpha, -
0.139)
ans=solve(f, lamda) [w.atoms(Symbol) for w in ans]
[set([]), set([]), set([])] Does this work for you in my nfloat branch? -- You received this message because you are subscribed to the Google Groups "sympy-issues" 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-issues?hl=en.
