Skip to content

Commit

Permalink
Use Exponential
Browse files Browse the repository at this point in the history
  • Loading branch information
gdalle committed May 29, 2024
1 parent b0603d1 commit ca87921
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/correctness.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit ca87921

Please sign in to comment.