Testsuite: fix test comparison value in pfwee_learnt_in.mod

It would fail on some processors, due to tiny floating point discrepancies.
kalman-mex
Sébastien Villemot 2023-10-18 21:16:15 -04:00
parent 5145bd0708
commit 9ef3f7d0ed
No known key found for this signature in database
GPG Key ID: 2CECE9350ECEBE4A
1 changed files with 1 additions and 1 deletions

View File

@ -112,8 +112,8 @@ oo_.exo_simul = [ saved_exo; oo_.exo_simul ];
// Information arriving in period 3 (temp shocks + permanent shock in future)
oo_.exo_simul(4,1) = 1.4;
oo_.exo_simul(8,1) = (1.5/1.3)*1.3;
oo_.exo_steady_state = 1.1+0.1;
oo_.exo_simul(8,1) = (1.5/1.2)*oo_.exo_steady_state;
oo_.exo_simul(end, 1) = oo_.exo_steady_state;
oo_.steady_state = evaluate_steady_state(oo_.steady_state, oo_.exo_steady_state, M_, options_, true);
oo_.endo_simul(:, end) = oo_.steady_state;