We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0183d4 commit 98b857aCopy full SHA for 98b857a
src/sage/combinat/integer_vectors_mod_permgroup.py
@@ -175,6 +175,19 @@ class IntegerVectorsModPermutationGroup(UniqueRepresentation):
175
[[]]
176
177
178
+ .. WARNING::
179
+
180
+ Because of :issue:`36527`, permutation groups that have
181
+ different domains but similar generators can be erroneously
182
+ treated as the same group. This will silently produce
183
+ erroneous results. To avoid this issue, compute a strong
184
+ generating system for the group as::
185
186
+ sgs = tuple(s for s in G.strong_generating_system())
187
188
+ and provide it as the optional `sgs` argument to the
189
+ constructor.
190
191
TESTS:
192
193
Let us check that canonical integer vectors of the symmetric group
0 commit comments