From 0b800b5366cfe0138fef498651dc5c4c89722186 Mon Sep 17 00:00:00 2001 From: kalmarek Date: Sun, 25 Mar 2018 23:55:16 +0200 Subject: [PATCH] move includes to the top of the file --- src/Groups.jl | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/src/Groups.jl b/src/Groups.jl index b325791..43cc1ab 100644 --- a/src/Groups.jl +++ b/src/Groups.jl @@ -58,6 +58,19 @@ end abstract type AbstractFPGroup <: Group end +############################################################################### +# +# Includes +# +############################################################################### + +include("FreeGroup.jl") +include("FPGroups.jl") +include("AutGroup.jl") + +include("DirectProducts.jl") +include("WreathProducts.jl") + ############################################################################### # # Type and parent object methods @@ -401,17 +414,4 @@ function generate_balls{T<:RingElem}(S::Vector{T}, Id::T=one(parent(first(S))); return B, sizes end -############################################################################### -# -# Includes -# -############################################################################### - -include("FreeGroup.jl") -include("FPGroups.jl") -include("AutGroup.jl") - -include("DirectProducts.jl") -include("WreathProducts.jl") - end # of module Groups