From 26c099fe5b72aa6cbff4e9fb132b66665113bfa4 Mon Sep 17 00:00:00 2001 From: Guillaume Dalle <22795598+gdalle@users.noreply.github.com> Date: Mon, 30 Sep 2024 08:59:42 +0200 Subject: [PATCH] Subtle change --- test/correctness.jl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/correctness.jl b/test/correctness.jl index 1e4e1d84..1bf560d0 100644 --- a/test/correctness.jl +++ b/test/correctness.jl @@ -15,7 +15,7 @@ rng = StableRNG(63) ## Settings -T, K = 50, 200 +T, K = 100, 200 init = [0.4, 0.6] init_guess = [0.5, 0.5] @@ -93,8 +93,8 @@ end if TEST_SUITE != "HMMBase" test_coherent_algorithms(rng, hmm, control_seq; seq_ends, hmm_guess, init=false) - # test_type_stability(rng, hmm, control_seq; seq_ends, hmm_guess) - # test_allocations(rng, hmm, control_seq; seq_ends, hmm_guess) + test_type_stability(rng, hmm, control_seq; seq_ends, hmm_guess) + test_allocations(rng, hmm, control_seq; seq_ends, hmm_guess) end end