With the latest version of SymPy, you have to use QQ.old_poly_ring(x) instead of QQ[x], because the ACGA module was not updated for the latest poly ring code yet.
Aaron Meurer On Tue, Jan 28, 2014 at 2:41 AM, Gerhard Martin <[email protected]> wrote: > from __future__ import division > from sympy import * > from sympy.abc import x, y > from sympy import QQ > QQ[x].free_module(2).submodule([1, 0], [1, 1]).syzygy_module() > > when run above code, it return QQ is not defined > > > -- > You received this message because you are subscribed to the Google Groups > "sympy" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at http://groups.google.com/group/sympy. > For more options, visit https://groups.google.com/groups/opt_out. -- You received this message because you are subscribed to the Google Groups "sympy" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/sympy. For more options, visit https://groups.google.com/groups/opt_out.
