Skip to content

Commit

Permalink
Set group properties only if groups is generated by pcsequence.
Browse files Browse the repository at this point in the history
  • Loading branch information
hulpke committed Jan 4, 2017
1 parent 671bffb commit e9bfb12
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions lib/pcgsperm.gi
Original file line number Diff line number Diff line change
Expand Up @@ -568,9 +568,11 @@ local grp, pcgs, U, oldlen, series, y, w,

pcgs := PcgsStabChainSeries( filter, grp, series, 1,true);

SetIsSolvableGroup( grp, true );
SetPcgs( grp, pcgs );
SetHomePcgs( grp, pcgs );
if Set(GeneratorsOfGroup(grp))=Set(pcseq) then
SetIsSolvableGroup( grp, true );
SetPcgs( grp, pcgs );
SetHomePcgs( grp, pcgs );
fi;
SetGroupOfPcgs (pcgs, grp);
return pcgs;
end);
Expand Down

0 comments on commit e9bfb12

Please sign in to comment.