Updates:
Status: Fixed
Labels: -NeedsReview PassedReview
Comment #9 on issue 2075 by [email protected]: solve fails for eq1=1 +
2*y/b - (e + x)**2/a; eq3=1 + 2*y/d - (x - e)**2/c
http://code.google.com/p/sympy/issues/detail?id=2075
Now in master:
In [1]: var('a:e')
Out[1]: (a, b, c, d, e)
In [2]: eq1=1 + 2*y/b - (e + x)**2/a
In [3]: eq3=1 + 2*y/d - (x - e)**2/c
In [4]: %time u = solve([eq1,eq3],[x,y])
CPU times: user 0.47 s, sys: 0.00 s, total: 0.47 s
Wall time: 0.48 s
--
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.