From e4ed91b47325e62f5f175fac83215d4db5323042 Mon Sep 17 00:00:00 2001 From: kalmar Date: Thu, 6 Jul 2017 17:30:19 +0200 Subject: [PATCH] rename generators(G::Group) -> gens(G::Group) --- test/runtests.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/runtests.jl b/test/runtests.jl index d1f5768..b40cf0b 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -37,7 +37,7 @@ using Nemo @testset "GroupRing constructors FreeGroup" begin using Groups F = FreeGroup(3) - S = generators(F) + S = gens(F) append!(S, [inv(s) for s in S]) S = unique(S)