Fix typo.

This commit is contained in:
Glen Whitney 2017-10-17 21:57:31 +02:00
parent e05b2a6deb
commit 75fe6fa0e3
1 changed files with 2 additions and 2 deletions

View File

@ -32,12 +32,12 @@ end );
############################################################################# #############################################################################
## ##
#O IsRighttQuasigroupTable( ls ) #O IsRightQuasigroupTable( ls )
## ##
## Returns true if <ls> is an n by n matrix with n distinct ## Returns true if <ls> is an n by n matrix with n distinct
## integral entries, each occurring exactly once in each column ## integral entries, each occurring exactly once in each column
InstallMethod( IsRighttQuasigroupTable, "for matrix", InstallMethod( IsRightQuasigroupTable, "for matrix",
[ IsMatrix ], [ IsMatrix ],
mat -> IsLeftQuasigroupTable(TransposedMat(mat)) mat -> IsLeftQuasigroupTable(TransposedMat(mat))
); );