Updates:
Status: Fixed
Comment #9 on issue 1469 by matt...@gmail.com: "can't decompose" error
http://code.google.com/p/sympy/issues/detail?id=1469
(No comment was entered for this change.)
--
You received this message because you are subscribed to the Google Groups
"sympy-issues" group
Updates:
Blockedon: 2133
Comment #8 on issue 1469 by asmeurer: "can't decompose" error
http://code.google.com/p/sympy/issues/detail?id=1469
I think Mateusz has added enough tests for symbolic factorization, at least
in polys12.
--
You received this message because you are subscribed
Comment #7 on issue 1469 by asmeurer: "can't decompose" error
http://code.google.com/p/sympy/issues/detail?id=1469
The problem with most of the issues blocking issue 1598 (new polys),
including this one, is that there were no
tests written for them.
--
You received this message because you a
Comment #6 on issue 1469 by Vinzent.Steinberg: "can't decompose" error
http://code.google.com/p/sympy/issues/detail?id=1469
Can this be closed? If not, what is the remaining issue?
--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starre
Comment #5 on issue 1469 by asmeurer: "can't decompose" error
http://code.google.com/p/sympy/issues/detail?id=1469
New polys:
In [1]: var('a b c')
Out[1]: (a, b, c)
In [2]: factor(a+b*x+log(c)*x,x)
Out[2]: a + x⋅(b + log(c))
I think this issue is a duplicate of at least one other (issue 783).
Updates:
Blockedon: 1598
Comment #4 on issue 1469 by asmeurer: "can't decompose" error
http://code.google.com/p/sympy/issues/detail?id=1469
(No comment was entered for this change.)
--
You received this message because you are listed in the owner
or CC fields of this issue, or because yo
Updates:
Labels: Polynomial
Comment #2 on issue 1469 by asmeurer: "can't decompose" error
http://code.google.com/p/sympy/issues/detail?id=1469
I think this would help issue 1562 a whole lot. Poly.cancel() should also
work with everything (right now it
doesn't raise like factor(), but
Comment #1 on issue 1469 by ondrej.certik: "can't decompose" error
http://code.google.com/p/sympy/issues/detail?id=1469
Thanks for the bug report. I think the only reason is that it is not yet
implemented.
--
You received this message because you are listed in the owner
or CC fields of this i
Status: New
Owner:
Labels: Type-Defect Priority-Medium
New issue 1469 by smichr: "can't decompose" error
http://code.google.com/p/sympy/issues/detail?id=1469
With x, a, b and c defined as symbols, factoring the following works:
###
>>> factor(a+b*x+c*x,x)
a + x*(b + c)
###
But if that c i