Skip to content
Snippets Groups Projects
Commit 4e815bd1 authored by Martin Kocour's avatar Martin Kocour
Browse files

DenseFSA stucture

parent 0befdb1c
No related branches found
No related tags found
No related merge requests found
......@@ -13,6 +13,7 @@ export
# concrete types
AcyclicFSA,
FSA,
DenseFSA,
# Accessors / properties
α,
......@@ -39,6 +40,7 @@ export
include("abstractfsa.jl")
include("fsa.jl")
include("dense_fsa.jl")
include("ops.jl")
end
struct DenseFSA{K, L} <: AbstractAcyclicFSA{K, L}
H::AbstractMatrix{K}
Σ::AbstractVector{L}
ρ::K
end
α(G::DenseFSA) = begin
L = length(G.Σ)
N = size(G.H, 2)
S = L * (N-1)
sparsevec(1:L, G.H[:, 1], S)
end
T(G::DenseFSA{K}) where K = begin
rows = []
cols = []
vals = K[]
L = length(G.Σ)
N = size(G.H, 2)
S = L * (N - 1)
for n in 2:N - 1
v = repeat(G.H[:, n], L) # flatten
r = [(n-2)*L + i for i in 1:L for _ in 1:L]
c = [(n-1)*L + i for _ in 1:L for i in 1:L]
rows = vcat(rows, r)
cols = vcat(cols, c)
vals = vcat(vals, v)
end
sparse(rows, cols, vals, S, S)
end
ω(G::DenseFSA) = begin
L = length(G.Σ)
N = size(G.H, 2)
S = L*(N - 1)
sparsevec(S - L + 1:S, G.H[:, N], S)
end
ρ(G::DenseFSA) = G.ρ
λ(G::DenseFSA) = repeat(G.Σ, size(G.H, 2) - 1)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment