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 a7bc60c commit 1a6b1deCopy full SHA for 1a6b1de
src/sage/combinat/matrices/latin.py
@@ -2462,7 +2462,7 @@ def p3_group_bitrade_generators(p):
2462
assert is_prime(p)
2463
2464
F = libgap.FreeGroup(3)
2465
- a, b, c = F.GeneratorsOfInverseSemigroup()
+ a, b, c = F.GeneratorsOfGroup()
2466
2467
rels = []
2468
rels.append(a**p)
@@ -2473,7 +2473,7 @@ def p3_group_bitrade_generators(p):
2473
rels.append(c*b*((b*c)**(-1)))
2474
2475
G = F.FactorGroupFpGroupByRels(rels)
2476
- u, v, _ = G.GeneratorsOfInverseSemigroup()
+ u, v, _ = G.GeneratorsOfGroup()
2477
2478
iso = libgap.IsomorphismPermGroup(G)
2479
0 commit comments