Comment #19 on issue 2015 by [email protected]: Hangs attempting to solve a system of linear equations
http://code.google.com/p/sympy/issues/detail?id=2015
For anyone who happens across this page, just a note that until other improvements are made, there is a 'manual' flag in solve that allows the system to be solved in about 15 seconds:
ans=solve([b + r/d - c/d ,
... c*(1/d + 1/e + 1/g) - f/g - r/d , ... f*(1/g + 1/i + 1/j) - c/g - h/i , ... h*(1/i + 1/l + 1/m) - f/i - k/m , ... k*(1/m + 1/o + 1/p) - h/m - n/p , ... n*(1/p + 1/q) - k/p ,], a, b, c, f, h, k, n, manual=True) -- 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.
