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

replace semiring multiplication with module multiplication

parent 10c65024
No related branches found
No related tags found
No related merge requests found
......@@ -109,8 +109,8 @@ begin
# (not the log-semiring). `val.(X)` casts `X` in the
# real-semiring while `K.(...)` converts it back
# to the log-semiring.
X1 = K.( val.(X1) + (τ ∇X1) )
X2 = K.( val.(X2) + (τ ∇X2) )
X1 = K.( val.(X1) + (τ * ∇X1) )
X2 = K.( val.(X2) + (τ * ∇X2) )
end
plot(F, ylabel="F", xlabel = "step", legend = false)
......
......@@ -31,7 +31,7 @@ function Base.:+(A::AbstractFST, B::AbstractFST)
FST(α(A) + α(B), T(A) + T(B), ω(A) + ω(B), ρ(A) + ρ(B), λ(A))
end
function Semirings.:(x::Number, A::AbstractFST)
function Base.:*(x::Number, A::AbstractFST)
Q = nstates(A)
I_α, V_α = findnz(α(A))
I_T, J_T, V_T = findnz(T(A))
......
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