rename generators -> gens

This commit is contained in:
kalmar 2017-07-06 17:36:52 +02:00
parent 77c3ba1c61
commit ab02448238
2 changed files with 2 additions and 2 deletions

View File

@ -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()

View File

@ -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)