Skip to content

Commit

Permalink
Remove unused predict
Browse files Browse the repository at this point in the history
  • Loading branch information
gdalle committed Oct 1, 2024
1 parent 21012a6 commit 6b2a3d4
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions src/inference/predict.jl
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,3 @@ function predict_next_state!(
mul!(next_state_marginals, transpose(trans), current_state_marginals)
return next_state_marginals
end

function predict_next_state(
hmm::AbstractHMM, current_state_marginals::AbstractVector{<:Real}, control=nothing
)
next_state_marginals = similar(current_state_marginals)
return predict_next_state!(next_state_marginals, hmm, current_state_marginals, control)
end

0 comments on commit 6b2a3d4

Please sign in to comment.