forked from sagemath/sage
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sagemathgh-38197: Column and row stabilizers for skew tableaux
Row and column stabilizers and the usual a, b, e elements of the symmetric group algebra are now computable for skew standard tableaux, not just for straight ones. The a, b, e functions are still not exposed at class level, but this can be done another day. The performance cost (at least on the e function) is trivial: ``` sage: %timeit eold([[2,3],[1,4]]) 1.29 ms ± 12.7 µs per loop (mean ± std. dev. of 7 runs, 1,000 loops each) sage: %timeit enew([[2,3],[1,4]]) 1.29 ms ± 15.5 µs per loop (mean ± std. dev. of 7 runs, 1,000 loops each) sage: %timeit eold([[2,3],[1,4],[5,7]]) 3.43 ms ± 141 µs per loop (mean ± std. dev. of 7 runs, 100 loops each) sage: %timeit enew([[2,3],[1,4],[5,7]]) 3.44 ms ± 158 µs per loop (mean ± std. dev. of 7 runs, 100 loops each) ``` (Tested using factored-out code, since the actual functions are cached.) URL: sagemath#38197 Reported by: Darij Grinberg Reviewer(s): Travis Scrimshaw
- Loading branch information
Showing
2 changed files
with
122 additions
and
17 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