Status: Accepted Owner: ---- Labels: Type-Defect Priority-Medium Polynomial EasyToFix
New issue 3085 by [email protected]: poly() does not respect the given order of generators
http://code.google.com/p/sympy/issues/detail?id=3085 In [109]: Poly(x*y*z, y, z, x) Out[109]: Poly(y*z*x, y, z, x, domain='ZZ') In [110]: poly(x*y*z, y, z, x) Out[110]: Poly(x*y*z, x, y, z, domain='ZZ') They should both give the generators in the given order of y, z, x. -- 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.
