ConjugateTableau(tab)
Returns the tableau obtained from tab by interchangings its rows and columns.
gap> ConjugateTableau([ [ 1, 3, 5, 6 ], [ 2, 4 ] ]); [ [ 1, 2 ], [ 3, 4 ], [ 5 ], [ 6 ] ]
This function requires the package ``specht'' (see RequirePackage).
GAP 3.4.4