From 39d2ffd4d0b6b603a2242bd467d051c711de0fe3 Mon Sep 17 00:00:00 2001 From: Thomas Breuer Date: Tue, 15 Aug 2023 01:27:23 +0200 Subject: [PATCH] avoid calling `FamilyPcgs` (#2656) (Probably this will not be a complete fix.) --- experimental/GModule/Cohomology.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/experimental/GModule/Cohomology.jl b/experimental/GModule/Cohomology.jl index 06e17206498e..f23f22b05e43 100644 --- a/experimental/GModule/Cohomology.jl +++ b/experimental/GModule/Cohomology.jl @@ -443,7 +443,7 @@ function Oscar.relations(G::Oscar.GAPGroup) end function Oscar.relations(G::PcGroup) - f = GAP.Globals.IsomorphismFpGroupByPcgs(GAP.Globals.FamilyPcgs(G.X), GAP.Obj("g")) + f = GAP.Globals.IsomorphismFpGroupByPcgs(GAP.Globals.Pcgs(G.X), GAP.Obj("g")) @req f != GAP.Globals.fail "Could not convert group into a group of type FPGroup" H = FPGroup(GAPWrap.Image(f)) return relations(H)