From 2a5ed79be5656c0041ca56ce14d464aac39189bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Adjemian=20=28Ryuk=29?= <stepan@adjemian.eu> Date: Tue, 15 Jun 2021 22:06:52 +0200 Subject: [PATCH] Do not run MCMC after online filter (integration test) --- tests/particle/dsge_base2.mod | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/particle/dsge_base2.mod b/tests/particle/dsge_base2.mod index c5c055c7d4..ebe91349c1 100644 --- a/tests/particle/dsge_base2.mod +++ b/tests/particle/dsge_base2.mod @@ -208,12 +208,12 @@ options_.threads.local_state_space_iteration_2 = 4; @#if ALGO_ONLINE_2 options_.particle.liu_west_delta = 0.9 ; - estimation(order=2,number_of_particles=1000,mode_compute=11); + estimation(order=2,number_of_particles=1000,mode_compute=11,mh_replic=0); @#endif @#if ALGO_ONLINE_1 options_.particle.liu_west_delta = 0.9 ; - estimation(order=1,number_of_particles=1000,mode_compute=11); + estimation(order=1,number_of_particles=1000,mode_compute=11,mh_replic=0); @#endif @#if MCMC -- GitLab