Skip to content

Commit 4306a45

Browse files
committed
make the example smaller
1 parent c5eab93 commit 4306a45

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/sage/groups/perm_gps/permgroup_element.pyx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -891,10 +891,10 @@ cdef class PermutationGroupElement(MultiplicativeGroupElement):
891891
sage: p._libgap_()
892892
()
893893
894-
Test that we handle large permutations :issue:`39998`::
894+
A minimal test that we handle permutations of degree larger than 2^16 :issue:`39998`::
895895
896-
sage: SymmetricGroup(2**17)((2**16,2**17-1))._libgap_()
897-
(65536,131071)
896+
sage: SymmetricGroup(2**16+1)((2**16,2**16+1))._libgap_() # long time (100 mb)
897+
(65536,65537)
898898
"""
899899
if self._libgap is not None:
900900
return self._libgap

0 commit comments

Comments
 (0)