Added missing semicolon.

time-shift
Stéphane Adjemian (Hermes) 2015-05-18 18:00:09 +02:00
parent 2fe7a4156d
commit 8b6040717a
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ function [ys,params,info] = evaluate_steady_state_file(ys_init,exo_ss,M,options)
updated_params_flag = max(abs(params1-params)) > 1e-12 ...
|| ~isequal(isnan(params1),isnan(params)); %checks whether numbers or NaN changed
else
updated_params_flag = 0
updated_params_flag = 0;
end
h_set_auxiliary_variables = str2func([M.fname '_set_auxiliary_variables']);