Skip to content

Commit

Permalink
Some last little details.
Browse files Browse the repository at this point in the history
  • Loading branch information
tscrim committed Dec 12, 2023
1 parent e632044 commit ff616a8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/sage/combinat/symmetric_group_algebra.py
Original file line number Diff line number Diff line change
Expand Up @@ -2175,7 +2175,7 @@ def kazhdan_lusztig_basis_element(self, w):
from sage.groups.perm_gps.permgroup_named import SymmetricGroup
q = PolynomialRing(R, 'q').gen()
self._KLG = SymmetricGroup(self.n)
self._cellular_KL = KazhdanLusztigPolynomial(KLG, q)
self._cellular_KL = KazhdanLusztigPolynomial(self._KLG, q)
polyfunc = self._cellular_KL.P

Check warning on line 2179 in src/sage/combinat/symmetric_group_algebra.py

View check run for this annotation

Codecov / codecov/patch

src/sage/combinat/symmetric_group_algebra.py#L2174-L2179

Added lines #L2174 - L2179 were not covered by tests
else:
self._cellular_KL = Coxeter3Group(['A', self.n+1])
Expand Down Expand Up @@ -2870,7 +2870,8 @@ def _to_sga(self, ind):
class KLCellularBasis(SGACellularBasis):
"""
The Kazhdan-Lusztig `C'` basis (at `q = 1`) of the symmetric group
algebra realized as a cellular basis.
algebra realized as a :class:`cellular basis
<sage.algebras.cellular_basis.CellularBasis>`
EXAMPLES::
Expand Down

0 comments on commit ff616a8

Please sign in to comment.