Skip to content

Commit

Permalink
REBASE csetperm.gi
Browse files Browse the repository at this point in the history
  • Loading branch information
hulpke committed Mar 27, 2024
1 parent 79d8c82 commit 9225514
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion lib/csetperm.gi
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,14 @@ InstallGlobalFunction( AddCosetInfoStabChain, function( G, U, maxmoved )
vert:=List(t1,x->x^-1);
# inverses of transversal, stored compact
# TODO: Instead of `Position`, use translabels entry
transinv:=List(G.transversal,x->vert[Position(t1,x)]);
#transinv:=List(G.transversal,x->vert[Position(t1,x)]);
transinv:=[];
for i in [1..Length(G.transversal)] do
if IsBound(G.transversal[i]) then
t:=Position(t1,G.transversal[i]);
transinv[i]:=vert[t];
fi;
od;
# Position in orbit
gorpo:=[];
for i in [1..Length(G.orbit)] do
Expand Down

0 comments on commit 9225514

Please sign in to comment.