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

IntersectedAbstractFSA is not needed anymore

parent c644b43b
No related branches found
No related tags found
No related merge requests found
......@@ -38,7 +38,7 @@ end
λ(G::DenseFSA) = repeat(G.Σ, size(G.H, 2) - 1)
# Intersection with DenseFSA
struct IntersectedDenseFSA{K, L, T<:AbstractFSA{K, L}} <: IntersectedAbstractFSA{K, L, DenseFSA{K, L}, T}
struct IntersectedDenseFSA{K, L, T<:AbstractFSA{K, L}} <: AbstractAcyclicFSA{K, L}
A::DenseFSA{K, L}
B::T
C::AbstractMatrix{K} # of shape |Σ| x nstates(A)
......
abstract type IntersectedAbstractFSA{K, L, T_A, T_B} <: AbstractFSA{K, L} end
struct IntersectedFSA{K, L, T_A<:AbstractFSA{K,L}, T_B<:AbstractFSA{K,L}} <: IntersectedAbstractFSA{K,L,T_A,T_B}
struct IntersectedFSA{K, L, T_A<:AbstractFSA{K,L}, T_B<:AbstractFSA{K,L}} <: AbstractFSA{K, L}
A::T_A
B::T_B
M::AbstractMatrix{K}
......
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