File tree 1 file changed +2
-3
lines changed
1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change 22
22
from sage .categories .generalized_coxeter_groups import GeneralizedCoxeterGroups
23
23
from sage .structure .element import have_same_parent , parent
24
24
from sage .misc .flatten import flatten
25
- from sage .graphs .digraph import DiGraph
26
- from sage .rings .integer_ring import ZZ
27
25
from copy import copy
28
26
from collections import deque
29
27
@@ -2913,6 +2911,7 @@ def kazhdan_lusztig_cell(self, side='left'):
2913
2911
"""
2914
2912
from sage .algebras .iwahori_hecke_algebra import IwahoriHeckeAlgebra
2915
2913
from sage .rings .polynomial .laurent_polynomial_ring import LaurentPolynomialRing
2914
+ from sage .rings .integer_ring import ZZ
2916
2915
2917
2916
R = LaurentPolynomialRing (ZZ , 'v' )
2918
2917
v = R .gen (0 )
@@ -2943,6 +2942,6 @@ def kazhdan_lusztig_cell(self, side='left'):
2943
2942
vertices .add (y )
2944
2943
queue .appendleft (y )
2945
2944
2945
+ from sage .graphs .digraph import DiGraph
2946
2946
g = DiGraph ([list (vertices ), list (edges )])
2947
2947
return set (g .strongly_connected_component_containing_vertex (w ))
2948
-
You can’t perform that action at this time.
0 commit comments