"Source: Text/Incidence/Tableau.text";
"Line: 1581";
"Date: Thu Sep 20 23:00:01 2018";
"Main: Thu May 25 10:02:38 2023";
// original file: Text/Incidence/Tableau.text, line: 1581
// Example: H154E17 ()
print "Example: H154E17";
ei := GetEchoInput();
SetEchoInput(true);
O := OrderedIntegerMonoid();
T := WordToTableau( O ! [8,1,7,3,6,2,5,9] );
T;
Content(T);
IsStandard(T);
assert not $1;
 
RowInsert(~T, 4);
T;
Content(T);
IsStandard(T);
assert $1;
SetEchoInput(ei);
