Skip to content

Commit

Permalink
Fixed bug in membership of binary kneading groups (comm. by Thorsten …
Browse files Browse the repository at this point in the history
…Groth, 20160803)
  • Loading branch information
laurentbartholdi committed Aug 8, 2016
1 parent b3722c2 commit 9d4c825
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions gap/examples.gi
Original file line number Diff line number Diff line change
Expand Up @@ -1704,6 +1704,7 @@ BindGlobal("PERIODICBKG_PREIMAGE@", function(G,depth)
x := MappedWord(x,Fgens,Sgens)/Fgens[1]*
MappedWord(y,Fgens,Sgens);
if ISONE@(i[2]) then x := x*Fgens[1]; fi;
if MappedWord(x,Fgens,Ggens)<>g then return fail; fi;
AddDictionary(knows,g,x);
return x;
end;
Expand Down Expand Up @@ -1993,6 +1994,7 @@ BindGlobal("PREPERIODICBKG_PREIMAGE@", function(G,depth)
if x=fail or y=fail then return fail; fi;
x := x^t*b/tau(i[1][1],rel[1],rel[2])^t*y^t;
if ISONE@(i[2]) then x := x*b; fi;
if MappedWord(x,Fgens,Ggens)<>g then return fail; fi;
AddDictionary(knows,g,x);
return x;
end;
Expand Down Expand Up @@ -2078,6 +2080,7 @@ BindGlobal("PREPERIODICBKG_PREIMAGE@", function(G,depth)
MappedWord(tau(i[1][1],glob_s,Fgens[k]),Fgens,Sgens)*
MappedWord(y,Fgens,Sgens);
if ISONE@(i[2]) then x := x*Fgens[1]; fi;
if MappedWord(x,Fgens,Ggens)<>g then return fail; fi;
AddDictionary(knows,g,x);
return x;
end;
Expand Down

0 comments on commit 9d4c825

Please sign in to comment.