File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -357,7 +357,7 @@ class ParentLibGAP(SageObject):
357
357
[0 6]
358
358
) of Special Linear Group of degree 2 over Finite Field in z2 of size 7^2]
359
359
"""
360
- return [self .subgroup (gap_subgroup.GeneratorsOfGroup() ) for gap_subgroup in self .gap().MinimalNormalSubgroups()]
360
+ return [self ._subgroup_constructor (gap_subgroup) for gap_subgroup in self .gap().MinimalNormalSubgroups()]
361
361
362
362
def maximal_normal_subgroups (self ):
363
363
"""
@@ -366,13 +366,13 @@ class ParentLibGAP(SageObject):
366
366
367
367
EXAMPLES::
368
368
369
- sage: SL(2,GF(49)).maximal_normal_subgroups ()
369
+ sage: SL(2,GF(49)).minimal_normal_subgroups ()
370
370
[Subgroup with 1 generators (
371
371
[6 0]
372
372
[0 6]
373
- ) of Special Linear Group of degree 2 over Finite Field in z2 of size 7^2]
373
+ ) of Special Linear Group of degree 2 over Finite Field in z2 of size 7^2]
374
374
"""
375
- return [self .subgroup (gap_subgroup.GeneratorsOfGroup() ) for gap_subgroup in self .gap().MaximalNormalSubgroups()]
375
+ return [self ._subgroup_constructor (gap_subgroup) for gap_subgroup in self .gap().MaximalNormalSubgroups()]
376
376
377
377
@cached_method
378
378
def gens (self ):
You can’t perform that action at this time.
0 commit comments