Skip to content

Commit

Permalink
Implementing reviewer changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
tscrim committed Aug 7, 2024
1 parent 51f9456 commit a239d30
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sage/algebras/hecke_algebras/ariki_koike_algebra.py
Original file line number Diff line number Diff line change
Expand Up @@ -625,10 +625,10 @@ def _T_on_basis(self, i, m):
tres, ct = self._res(t, i)
sres, cs = self._res(t, i+1)

if ct[0] == cs[0] and ct[2] == cs[2]: # same column
if ct[0] == cs[0] and ct[2] == cs[2]: # same column
return self.element_class(self, {(la, v, t): -R.one()})

if ct[0] == cs[0] and ct[1] == cs[1]: # same row
if ct[0] == cs[0] and ct[1] == cs[1]: # same row
return self.element_class(self, {(la, v, t): self._q})

# result is standard
Expand Down

0 comments on commit a239d30

Please sign in to comment.