rename generators -> gens
This commit is contained in:
parent
77c3ba1c61
commit
ab02448238
2
AutFN.jl
2
AutFN.jl
@ -97,7 +97,7 @@ function main()
|
|||||||
info(logger, "Upper bound: $upper_bound")
|
info(logger, "Upper bound: $upper_bound")
|
||||||
|
|
||||||
AutFN = AutGroup(FreeGroup(N), special=true, outer=true)
|
AutFN = AutGroup(FreeGroup(N), special=true, outer=true)
|
||||||
S = generators(AutFN);
|
S = gens(AutFN);
|
||||||
S = unique([S; [inv(s) for s in S]])
|
S = unique([S; [inv(s) for s in S]])
|
||||||
Id = AutFN()
|
Id = AutFN()
|
||||||
|
|
||||||
|
@ -46,7 +46,7 @@ end
|
|||||||
function SOutFN_generating_set(N::Int)
|
function SOutFN_generating_set(N::Int)
|
||||||
|
|
||||||
SOutFN = AutGroup(FreeGroup(N), special=true, outer=true)
|
SOutFN = AutGroup(FreeGroup(N), special=true, outer=true)
|
||||||
S = generators(SOutFN);
|
S = gens(SOutFN);
|
||||||
S = [S; [inv(s) for s in S]]
|
S = [S; [inv(s) for s in S]]
|
||||||
|
|
||||||
return SOutFN, unique(S)
|
return SOutFN, unique(S)
|
||||||
|
Loading…
Reference in New Issue
Block a user