From ca8792158c122a17380311e15312807b13dcba2c Mon Sep 17 00:00:00 2001 From: Guillaume Dalle <22795598+gdalle@users.noreply.github.com> Date: Wed, 29 May 2024 07:35:27 +0200 Subject: [PATCH] Use Exponential --- test/correctness.jl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/correctness.jl b/test/correctness.jl index 5e8b9901..3c625b3b 100644 --- a/test/correctness.jl +++ b/test/correctness.jl @@ -112,9 +112,9 @@ end test_allocations(rng, hmm, control_seq; seq_ends, hmm_guess) end -@testset "Normal and Laplace" begin # issue 101 - dists = [Normal(μ[1][1]), Laplace(μ[2][1])] - dists_guess = [Normal(μ_guess[1][1]), Laplace(μ_guess[2][1])] +@testset "Normal and Exponential" begin # issue 101 + dists = [Normal(μ[1][1]), Exponential(1.0)] + dists_guess = [Normal(μ_guess[1][1]), Exponential(0.8)] hmm = HMM(init, trans, dists) hmm_guess = HMM(init_guess, trans_guess, dists_guess)