2017-05-09 17:46:52 +02:00
|
|
|
|
|
|
|
|
2017-05-11 18:14:59 +02:00
|
|
|
immutable FPSymbol <: GSymbol
|
|
|
|
str::String
|
|
|
|
pow::Int
|
|
|
|
end
|
|
|
|
|
|
|
|
typealias FPGroupElem GWord{FPSymbol}
|
2017-05-09 17:46:52 +02:00
|
|
|
|
2017-05-11 18:16:21 +02:00
|
|
|
type FPGroup <: Group
|
|
|
|
gens::Vector{FPSymbol}
|
|
|
|
rels::Vector{FPGroupElem}
|
|
|
|
# order::Vector{T}
|
|
|
|
# fastmult_table::Array{Int,2}
|
|
|
|
function FPGroup{T<:GSymbol}(gens::Vector{T}, rels::Vector{GWord{T}})
|
|
|
|
G = new(gens, rels)
|
|
|
|
G.gens = gens
|
|
|
|
rels = [G(r) for r in rels]
|
|
|
|
G.rels = rels
|
|
|
|
return G
|
|
|
|
end
|
2017-05-09 17:46:52 +02:00
|
|
|
end
|
|
|
|
|
2017-05-11 18:17:08 +02:00
|
|
|
export FPSymbol, FPGroupElem, FPGroup, generators
|
2017-05-09 17:46:52 +02:00
|
|
|
|
2017-05-11 18:17:42 +02:00
|
|
|
parent_type(::Type{FPGroupElem}) = FPGroup
|
|
|
|
|
|
|
|
elem_type(::FPGroup) = FPGroupElem
|
|
|
|
|
2017-05-09 17:46:52 +02:00
|
|
|
|
2017-05-11 18:16:51 +02:00
|
|
|
FPSymbol(s::String) = FPSymbol(s,1)
|
|
|
|
|
|
|
|
FPGroup(a::Vector{String}) = FPGroup([FPSymbol(i) for i in a], FPGroupElem[])
|
|
|
|
|
2017-05-11 18:18:06 +02:00
|
|
|
function (G::FPGroup)()
|
|
|
|
id = FPGroupElem(FPSymbol("", 0))
|
|
|
|
id.parent = G
|
|
|
|
return id
|
2017-05-09 17:46:52 +02:00
|
|
|
end
|
|
|
|
|
2017-05-11 18:18:06 +02:00
|
|
|
function (G::FPGroup)(w::GWord)
|
|
|
|
eltype(w.symbols) == FPSymbol || throw("Can not coerce $w to FPGroup $G.")
|
|
|
|
if length(w) > 0
|
|
|
|
for s in w.symbols
|
|
|
|
i = findfirst(g -> g.str == s.str, G.gens)
|
|
|
|
i == 0 && throw("Symbol $s does not belong to $G.")
|
|
|
|
s.pow % G.gens[i].pow == 0 || throw("Symbol $s doesn't belong to $G.")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
w.parent = G
|
|
|
|
return w
|
|
|
|
end
|
|
|
|
|
|
|
|
(G::FPGroup)(s::FPSymbol) = G(FPGroupElem(s))
|
|
|
|
|
2017-05-09 17:46:52 +02:00
|
|
|
|
2017-05-11 18:19:59 +02:00
|
|
|
hash(s::FPSymbol, h::UInt) = hash(s.str, hash(s.pow, hash(FPSymbol, h)))
|
|
|
|
|
|
|
|
isone(s::FPSymbol) = s.pow == 0
|
|
|
|
|
|
|
|
change_pow(s::FPSymbol, n::Int) = FPSymbol(s.str, n)
|
|
|
|
|
|
|
|
length(s::FPSymbol) = abs(s.pow)
|
|
|
|
|
2017-05-11 18:21:05 +02:00
|
|
|
generators(G::FPGroup) = [G(FPGroupElem(g)) for g in G.gens]
|
|
|
|
|
2017-05-09 17:46:52 +02:00
|
|
|
function show(io::IO, G::FPGroup)
|
|
|
|
print(io, "Finitely presented group on $(length(G.gens)) gens and $(length(G.rels)) relations:\n")
|
|
|
|
print(io, "gens:\t", join([g.gen for g in G.gens], ","),"\n")
|
|
|
|
print(io, "rels:\t", join([rel for rel in G.rels], ","),"\n")
|
|
|
|
end
|
|
|
|
|
2017-05-11 18:22:04 +02:00
|
|
|
function show(io::IO, s::FPSymbol)
|
|
|
|
if isone(s)
|
|
|
|
print(io, "(id)")
|
|
|
|
elseif s.pow == 1
|
|
|
|
print(io, s.str)
|
|
|
|
else
|
|
|
|
print(io, (s.str)*"^$(s.pow)")
|
|
|
|
end
|
2017-05-09 17:46:52 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
function add_rel!{T<:FPSymbol}(G::FPGroup, w::GWord{T})
|
|
|
|
if !(w in G.rels)
|
|
|
|
push!(G.rels, w)
|
|
|
|
end
|
|
|
|
return G
|
|
|
|
end
|
|
|
|
|
|
|
|
end #of module FinitelyPresentedGroups
|