1
0
mirror of https://github.com/kalmarek/PropertyT.jl.git synced 2024-07-16 10:40:29 +02:00
PropertyT.jl/src/laplacians.jl

69 lines
1.8 KiB
Julia
Raw Normal View History

2018-09-05 08:58:46 +02:00
###############################################################################
#
# Laplacians
#
###############################################################################
function spLaplacian(RG::GroupRing, S, T::Type=Float64)
result = RG(T)
result[RG.group()] = T(length(S))
for s in S
result[s] -= one(T)
end
return result
end
function spLaplacian(RG::GroupRing{R}, S, T::Type=Float64) where {R<:Ring}
result = RG(T)
result[one(RG.group)] = T(length(S))
for s in S
result[s] -= one(T)
end
return result
end
2018-09-16 18:01:44 +02:00
function Laplacian(S::Vector{E}, radius) where E<:AbstractAlgebra.RingElem
2018-09-05 08:58:46 +02:00
R = parent(first(S))
2018-09-16 18:01:44 +02:00
return Laplacian(S, one(R), radius)
2018-09-05 08:58:46 +02:00
end
2018-09-16 18:01:44 +02:00
function Laplacian(S::Vector{E}, radius) where E<:AbstractAlgebra.GroupElem
2018-09-05 08:58:46 +02:00
G = parent(first(S))
2018-09-16 18:01:44 +02:00
return Laplacian(S, G(), radius)
2018-09-05 08:58:46 +02:00
end
2018-09-16 18:01:44 +02:00
function Laplacian(S, Id, radius)
2019-01-11 06:32:09 +01:00
@info("Generating metric ball of radius $(2radius)...")
2018-09-05 08:58:46 +02:00
@time E_R, sizes = Groups.generate_balls(S, Id, radius=2radius)
2019-01-11 06:32:09 +01:00
@info("Generated balls of sizes $sizes.")
2018-09-05 08:58:46 +02:00
@time pm = GroupRings.create_pm(E_R, GroupRings.reverse_dict(E_R), sizes[radius]; twisted=true)
2019-01-11 06:32:09 +01:00
@info("Creating product matrix...")
2018-09-05 08:58:46 +02:00
RG = GroupRing(parent(Id), E_R, pm)
Δ = spLaplacian(RG, S)
return Δ
end
2019-01-11 06:33:14 +01:00
function saveGRElem(fname::String, g::GroupRingElem)
2018-09-16 18:02:35 +02:00
RG = parent(g)
2019-01-11 06:33:14 +01:00
JLD.save(fname, "coeffs", g.coeffs, "pm", RG.pm, "G", RG.group)
end
function loadGRElem(fname::String, RG::GroupRing)
coeffs = load(fname, "coeffs")
return GroupRingElem(coeffs, RG)
2018-09-16 18:02:35 +02:00
end
function loadGRElem(fname::String, G::Group)
2019-01-11 06:33:14 +01:00
pm = load(fname, "pm")
RG = GroupRing(G, pm)
return loadGRElem(fname, RG)
end
function loadGRElem(fname::String)
pm, G = load(fname, "pm", "G")
RG = GroupRing(G, pm)
return loadGRElem(fname, RG)
2018-09-05 08:58:46 +02:00
end