Comment #63 on issue 1598 by asmeurer: New polynomials manipulation module
http://code.google.com/p/sympy/issues/detail?id=1598
If you want to do a release for issue 1783, I would suggest just having a
0.6.6.1 release (or 0.6.7), and putting the new
polys and hopefully the new assumptions in the point release.
As for the ODE test, this will fix it to pass in both 64 and 32 bit:
diff --git a/sympy/solvers/tests/test_ode.py
b/sympy/solvers/tests/test_ode.py
index 5b83198..d7b75b3 100644
--- a/sympy/solvers/tests/test_ode.py
+++ b/sympy/solvers/tests/test_ode.py
@@ -292,7 +292,7 @@ def test_separable2():
assert dsolve(eq7, f(x), hint='separable') == sol7
assert dsolve(eq8, f(x), hint='separable') == sol8
assert str(dsolve(eq9, f(x), hint='separable_Integral')) == sol9str
- assert dsolve(eq10, f(x), hint='separable') == sol10
+ assert dsolve(eq10, f(x), hint='separable', simplify=False) == sol10
assert checkodesol(eq7, f(x), sol7, order=1, solve_for_func=False)[0]
assert checkodesol(eq8, f(x), sol8, order=1, solve_for_func=False)[0]
--
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.