-
Notifications
You must be signed in to change notification settings - Fork 160
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Resolve some reported minor issues #3879
Conversation
This addresses several points in gap-system#3764 Remove obsolete BasisRadical method Dualizing the socle is better since maximals aleady are computed through dualization. Documentation now states `InducedAction` only for nontrivial result. Make result of BasisSocle immutable.
@@ -2466,6 +2466,7 @@ InstallGlobalFunction(AssociatedPartition,function(lambda) | |||
local res, k, j; | |||
res := []; | |||
k := Length(lambda); | |||
if k=0 then return res;fi; # empty partition |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A minimal test which just executes AssociatedPartition([]);
would be nice.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. Shall we backport to 4.11?
I think I leave the backport question to those who would have to do the work. There shouldn't be a problem with it, but it is an extra step. I'll wait with merging for a day or two so that whoever wants can add the backport tag. |
* CLEANUP: Minor MeatAxe quirks This addresses several points in #3764 Remove obsolete BasisRadical method Dualizing the socle is better since maximals aleady are computed through dualization. Documentation now states `InducedAction` only for nontrivial result. Make result of BasisSocle immutable. * FIX: AssociatedPartition for empty partition This closes #3854 * Added test.
Backported to stable-4.11 in commit a66ec38 |
This fixes AssociatedPartition for the empty partition #3854
and some of the MeatAxe issues in #3764