Skip to content

Commit

Permalink
Fix nice monomorphism dispatch for HallSubgroup
Browse files Browse the repository at this point in the history
  • Loading branch information
markuspf committed Jan 30, 2016
1 parent 606200a commit 97b1b77
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/grpnice.gi
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,11 @@ function(g,l)
local mon,h;
mon:=NiceMonomorphism(g);
h:=HallSubgroup(ImagesSet(mon,g),l);
return PreImage(mon,h);
if h = fail then
return fail;
else
return PreImage(mon,h);
fi;
end);

#############################################################################
Expand Down

0 comments on commit 97b1b77

Please sign in to comment.