diff --git a/AutFN.jl b/AutFN.jl index 84d7793..a77e891 100644 --- a/AutFN.jl +++ b/AutFN.jl @@ -97,7 +97,7 @@ function main() info(logger, "Upper bound: $upper_bound") AutFN = AutGroup(FreeGroup(N), special=true, outer=true) - S = generators(AutFN); + S = gens(AutFN); S = unique([S; [inv(s) for s in S]]) Id = AutFN() diff --git a/AutFN_orbit.jl b/AutFN_orbit.jl index 8467174..445a7be 100644 --- a/AutFN_orbit.jl +++ b/AutFN_orbit.jl @@ -46,7 +46,7 @@ end function SOutFN_generating_set(N::Int) SOutFN = AutGroup(FreeGroup(N), special=true, outer=true) - S = generators(SOutFN); + S = gens(SOutFN); S = [S; [inv(s) for s in S]] return SOutFN, unique(S)