File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 80
80
from sage .misc .cachefunc import cached_method
81
81
from sage .rings .integer import Integer
82
82
from sage .rings .integer_ring import ZZ
83
- from sage .rings .polynomial .infinite_polynomial_element import InfinitePolynomial_sparse
83
+ from sage .rings .polynomial .infinite_polynomial_element import InfinitePolynomial
84
84
from sage .rings .polynomial .polynomial_ring_constructor import PolynomialRing
85
85
from sage .rings .polynomial .multi_polynomial import MPolynomial
86
86
import sage .libs .symmetrica .all as symmetrica
@@ -463,7 +463,7 @@ def _element_constructor_(self, x):
463
463
return self ._from_dict ({perm : self .base_ring ().one ()})
464
464
elif isinstance (x , MPolynomial ):
465
465
return symmetrica .t_POLYNOM_SCHUBERT (x )
466
- elif isinstance (x , InfinitePolynomial_sparse ):
466
+ elif isinstance (x , InfinitePolynomial ):
467
467
R = x .polynomial ().parent ()
468
468
# massage the term order to be what symmetrica expects
469
469
S = PolynomialRing (R .base_ring (),
You can’t perform that action at this time.
0 commit comments