sim1_linear.m: change hard-coded tolerance to option

The tolerance for the steady state check should depend on the accuracy of the steady state computation
time-shift
Johannes Pfeifer 2018-02-06 07:14:47 +01:00 committed by Stéphane Adjemian (Charybdis)
parent 4adebd4419
commit 224ccb7bab
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ x = repmat(transpose(steadystate_x), 1+M.maximum_exo_lag+M.maximum_exo_lead, 1);
[d1, jacobian] = dynamicmodel(z, x, params, steadystate_y, M.maximum_exo_lag+1);
% Check that the dynamic model was evaluated at the steady state.
if max(abs(d1))>1e-12
if max(abs(d1))>options.solve_tolf
error('Jacobian is not evaluated at the steady state!')
end