| 1 | initial version |
It might be a circular dependency. Instead of importing at the top of the file, try importing within the class or method or function where you actually use it; that might help. That is, instead of
from sage.rings.polynomial.multi_polynomial_sequence import algebraic_dependence
def f(x,y):
...
try
def f(x,y):
from sage.rings.polynomial.multi_polynomial_sequence import algebraic_dependence
...
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.