1
0
mirror of https://github.com/kalmarek/Groups.jl.git synced 2024-11-19 06:30:29 +01:00

move includes to the top of the file

This commit is contained in:
kalmarek 2018-03-25 23:55:16 +02:00
parent 6939c0f00a
commit 0b800b5366

View File

@ -58,6 +58,19 @@ end
abstract type AbstractFPGroup <: Group 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 # 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 return B, sizes
end end
###############################################################################
#
# Includes
#
###############################################################################
include("FreeGroup.jl")
include("FPGroups.jl")
include("AutGroup.jl")
include("DirectProducts.jl")
include("WreathProducts.jl")
end # of module Groups end # of module Groups