Status: New
Owner: ----
Labels: Type-Defect Priority-Medium

New issue 2015 by ggventurini: Hangs attempting to solve a system of linear equations
http://code.google.com/p/sympy/issues/detail?id=2015

I often have this issue. This is one of the way I can reproduce it.

I can't solve this problem for a, b, c, f, h, k, n:

b + r/d - c/d = 0
c*(1/d + 1/e + 1/g) - f/g - r/d = 0
f*(1/g + 1/i + 1/j) - c/g - h/i = 0
h*(1/i + 1/l + 1/m) - f/i - k/m = 0
k*(1/m + 1/o + 1/p) - h/m - n/p = 0
n*(1/p + 1/q) - k/p = 0

Python snippet, the pickle file is attached:

import sympy
import pickle
fp = open("bugreport.pickle")
[eq, x]= pickle.load(fp)
sympy.solve(eq, x)
 [... program hangs...]

System info:

Linux mybox 2.6.32-24-generic #38-Ubuntu SMP Mon Jul 5 09:22:14 UTC 2010 i686 GNU/Linux

sympy.__version__
'0.6.7'
import sys
print sys.version_info
(2, 6, 5, 'final', 0)


Attachments:
        bugreport.pickle  6.9 KB

--
You received this message because you are subscribed to the Google Groups 
"sympy-issues" group.
To post to this group, send email to sympy-iss...@googlegroups.com.
To unsubscribe from this group, send email to 
sympy-issues+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sympy-issues?hl=en.

Reply via email to