Increase priority of LOOPS IsCommutative.

This commit is contained in:
Glen Whitney 2017-10-30 12:14:36 -04:00
parent 69a866d5db
commit 03d80d9acb
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ InstallTrueMethod( IsExtraLoop, IsAssociative and IsLoop );
## Returns true if <Q> is commutative.
InstallMethod( IsCommutative, "for quasigroup",
[ IsQuasigroup ],
[ IsQuasigroup ], 20, # Need to beat GAP's library methods
function( Q )
return LeftSection( Q ) = RightSection( Q );
end );