Skip to content
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

behaviour of AddGeneratorsToOrbit #13

Open
klauslux opened this issue Mar 27, 2015 · 0 comments
Open

behaviour of AddGeneratorsToOrbit #13

klauslux opened this issue Mar 27, 2015 · 0 comments

Comments

@klauslux
Copy link

klauslux commented Mar 27, 2015

The following GAP session seems to show that the Schreiertree is not updated if
log is not true for the orbit.

gap> LoadPackage("orb");
───────────────────────────────────────────────────────────────────────────────────────────────────────────
Loading  orb 4.7.3 (Methods to enumerate orbits)
by Juergen Mueller (http://www.math.rwth-aachen.de/~Juergen.Mueller),
   Max Neunhöffer (http://www-groups.mcs.st-and.ac.uk/~neunhoef), and
   Felix Noeske (http://www.math.rwth-aachen.de/~Felix.Noeske).
Homepage: http://gap-system.github.io/orb/
───────────────────────────────────────────────────────────────────────────────────────────────────────────
true
gap> gens:=AtlasGenerators("Fi23",1);;
gap> fi23 := Group(gens.generators);
<permutation group with 2 generators>
gap> o:=Orb(fi23, 1, ^, rec(schreier:=true));
<open orbit, 1 points with Schreier tree>
gap> Enumerate(o);
<closed orbit, 31671 points with Schreier tree>
gap> DepthOfSchreierTree(o);
46
gap> dblwords:=Flat(TransposedMat([gens.generators])*[gens.generators]);;
gap> AddGeneratorsToOrbit(o, dblwords);
<closed orbit, 31671 points with Schreier tree>
gap> DepthOfSchreierTree(o);
46
gap> o:=Orb(fi23, 1, ^, rec(schreier:=true,log:=true));
<open orbit, 1 points with Schreier tree with log>
gap> Enumerate(o);
<closed orbit, 31671 points with Schreier tree with log>
gap> DepthOfSchreierTree(o);
46
gap> AddGeneratorsToOrbit(o, dblwords);
<closed orbit, 31671 points with Schreier tree with log>
gap> DepthOfSchreierTree(o);
23
gap> quit;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant