From 6b2a3d4952d2c36e79a011f759fa31fa975d1b5c Mon Sep 17 00:00:00 2001 From: Guillaume Dalle <22795598+gdalle@users.noreply.github.com> Date: Tue, 1 Oct 2024 16:32:24 +0200 Subject: [PATCH] Remove unused predict --- src/inference/predict.jl | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/inference/predict.jl b/src/inference/predict.jl index 9459fa8..7240af6 100644 --- a/src/inference/predict.jl +++ b/src/inference/predict.jl @@ -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