Properties take just a single filter, I guess.

This commit is contained in:
Glen Whitney 2017-10-17 21:56:00 +02:00
parent 722f25e51f
commit e05b2a6deb
1 changed files with 3 additions and 3 deletions

View File

@ -80,12 +80,12 @@ DeclareCategory( "IsLoop", IsQuasigroup and IsMagmaWithOne and
## TESTING MULTIPLICATION TABLES
## -------------------------------------------------------------------------
DeclareProperty( "IsLeftQuasigroupTable", [ IsMatrix ]);
DeclareProperty( "IsRightQuasigroupTable", [ IsMatrix ]);
DeclareProperty( "IsLeftQuasigroupTable", IsMatrix );
DeclareProperty( "IsRightQuasigroupTable", IsMatrix );
DeclareSynonym( "IsQuasigroupTable",
IsLeftQuasigroupTable and IsRightQuasigroupTable );
DeclareSynonym( "IsQuasigroupCayleyTable", IsQuasigroupTable );
DeclareProperty( "IsLoopTable", [ IsMatrix ] );
DeclareProperty( "IsLoopTable", IsMatrix );
DeclareSynonym( "IsLoopCayleyTable", IsLoopTable );
DeclareGlobalFunction("CanonicalCayleyTableOfLeftQuasigroupTable");
DeclareOperation( "CanonicalCayleyTable", [ IsMatrix ] );