This repository has been archived by the owner on Jan 30, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8302a76
commit 6a5ac12
Showing
2 changed files
with
142 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,7 @@ | |
- Mike Hansen: Initial version | ||
- Travis Scrimshaw, Arthur Lubovsky (2013-02-11): | ||
Factored out ``CombinatorialClass`` | ||
- Trevor K. Karn (2022-08-03): added `backward_slide` | ||
""" | ||
# **************************************************************************** | ||
# Copyright (C) 2007 Mike Hansen <[email protected]>, | ||
|
@@ -940,6 +941,15 @@ def backward_slide(self, corner=None): | |
sage: Q.reverse_slide((1, 2)) == Q.backward_slide((1, 2)) | ||
True | ||
sage: T = SkewTableaux()([[1, 3],[3],[5]]); T | ||
1 3 | ||
3 | ||
5 | ||
sage: T.reverse_slide((1,1)) | ||
. 1 | ||
3 3 | ||
5 | ||
TESTS:: | ||
sage: T = SkewTableaux()([[2, 2], [4, 4], [5]]) | ||
|