Skip to content
Snippets Groups Projects
Verified Commit 9e366176 authored by Lucas Ondel Yang's avatar Lucas Ondel Yang
Browse files

fixed typo

parent bcb4bcff
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@ using InteractiveUtils
# ╔═╡ e2560be8-f3f9-11ed-0754-e3e1572c751d
begin
using Pkg
#Pkg.activate(mktempdir())
Pkg.activate(mktempdir())
# Register the FAST registry
Pkg.Registry.add(
......
......@@ -19,7 +19,7 @@ function closure(A::AbstractWFST; plus = false)
vcat(TA.V, transpose(α(A)))
)
ρB = iszero(ρ(A)) && ! plus ? one(K) : ρ(A)
FST(α(A), TB, ω(A), ρB, λ(A))
WFST(α(A), TB, ω(A), ρB, λ(A))
end
"""
......@@ -37,7 +37,7 @@ function Base.cat(A::AbstractWFST, B::AbstractWFST)
vcat(blockdiag(TA.V, TB.V), transpose(vcat(spzeros(K, nstates(B)), α(B)))),
)
FST(
WFST(
vcat(α(A), ρ(A) * α(B)),
TC,
vcat(ω(A) * ρ(B), ω(B)),
......@@ -68,7 +68,7 @@ function Base.union(A::AbstractWFST, B::AbstractWFST)
blockdiag(TA.V, TB.V)
)
FST(vcat(α(A), α(B)), TC, vcat(ω(A), ω(B)), ρ(A) ρ(B), vcat(λ(A), λ(B)))
WFST(vcat(α(A), α(B)), TC, vcat(ω(A), ω(B)), ρ(A) ρ(B), vcat(λ(A), λ(B)))
end
Base.union(A1::AbstractWFST{K}, AN::AbstractWFST{K}...) where K = foldl(union, AN, init = A1)
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