From 384270d9db722fc329c69ab1d48d738ed0cb70ce Mon Sep 17 00:00:00 2001 From: Glen Whitney Date: Wed, 18 Oct 2017 22:23:26 +0200 Subject: [PATCH] Sigh no consistency in when I use L/R an when left/right. --- gap/structure.gi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gap/structure.gi b/gap/structure.gi index 10bb59c..b845666 100644 --- a/gap/structure.gi +++ b/gap/structure.gi @@ -239,12 +239,12 @@ end); ## Distributivity checkers for when need be InstallMethod(IsLSelfDistributive, "for magma", [IsMagma], - M -> IsLSelfDistributiveTable(MultiplicationTable(M)) + M -> IsLeftSelfDistributiveTable(MultiplicationTable(M)) ); InstallMethod(IsRSelfDistributive, "for magma", [IsMagma], - M -> IsRSelfDistributiveTable(MultiplicationTable(M)) + M -> IsRightSelfDistributiveTable(MultiplicationTable(M)) ); ## Special case the Opposite function from LOOPS package, since the opposite