From ae3752a0d349ff6554497a58dbb2c02449e05579 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Adjemian=20=28Charybdis=29?= Date: Thu, 16 Mar 2017 15:51:11 +0100 Subject: [PATCH] Lowered threshold value for a test. --- tests/kalman_filter_smoother/test_compute_Pinf_Pstar.mod | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/kalman_filter_smoother/test_compute_Pinf_Pstar.mod b/tests/kalman_filter_smoother/test_compute_Pinf_Pstar.mod index 036b62442..e2551ef2c 100644 --- a/tests/kalman_filter_smoother/test_compute_Pinf_Pstar.mod +++ b/tests/kalman_filter_smoother/test_compute_Pinf_Pstar.mod @@ -103,9 +103,9 @@ k = reshape(1:M_.endo_nbr,3,round(M_.endo_nbr/3)); kc = k(1,:); kr = k(2:3,:); -if norm(Pinf(kr(:),kc)) > 1e-15 +if norm(Pinf(kr(:),kc)) > 1e-14 error('Pinf isn''t correct') end -if norm(Pinf(kr(:),kc)) > 1e-15 +if norm(Pinf(kr(:),kc)) > 1e-14 error('Pstar isn''t correct') end