Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
Speed up sliding by skipping classcall
Browse files Browse the repository at this point in the history
  • Loading branch information
trevorkarn committed Aug 12, 2022
1 parent 0473f20 commit cfee8e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sage/combinat/skew_tableau.py
Original file line number Diff line number Diff line change
Expand Up @@ -1039,7 +1039,7 @@ def backward_slide(self, corner=None):
# the while loop terminates. We do need to reset it at the end.
new_st[i][j] = None

return SkewTableau(new_st)
return SkewTableaux()(new_st)

reverse_slide = backward_slide

Expand Down

0 comments on commit cfee8e8

Please sign in to comment.