-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Description
I am new to GAP and I would like to find setwise stabiliser for some permutation group. While playing with genss, I've found the following potential issue. Consider the code:
while true do
g := PrimitiveGroup(9, 5);
actual := SetwiseStabilizer(g, OnPoints, [3]).setstab;
expected := Stabilizer(g, 3);
if actual <> expected then
Error("Not equal.");
fi;
od;
The above code throws exception at some iteration, while it should not. If I understand correctly, this is because SetwiseStabilizer function uses randomised Schreier-Sims to construct BSGS, and there is a probability to obtain incomplete BSGS, so backtrack search fails. Is it possible to specify group order to SetwiseStabilizer, so it will use randomised Schreier-Sims with known order and will always produce valid BSGS and backtrack search will always complete?
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels