Comment #24 on issue 1598 by mattpap: New polynomials manipulation module http://code.google.com/p/sympy/issues/detail?id=1598
> But who merges all the changes. I can keep pushing my changes here, but > unless > (like for master) someone will oversee the updating as changes are made, > you can > end up with a merge headache later That's right and we would like to avoid unnecessary headaches. So, the official polys branch is polysn (where n is an integer) in my github repo. The latest is: http://github.com/mattpap/sympy-polys/commits/polys3 (each rebase will increase n). Recent changes: 1. All tests, doctests, examples are OK. 2. Simplified polytools.py and improved coverage (75%). 3. Lots of bugfixes here and there (in polys of course). Plan for this week (actually weekend) is to test 100% of polytools.py, finish implementing algebraic factorization routines and write finally some documentation. > Also, factor still should be doing something different. It's failing to > factor > this function: Just use factor(f, frac=True). This will use cancel() to simplify the fraction and factor both numerator and denominator, and return a factored fraction. The same was implemented in sqf(). -- You received this message because you are listed in the owner or CC fields of this issue, or because you starred this issue. You may adjust your issue notification preferences at: http://code.google.com/hosting/settings -- 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.
