From e8aa9aba409258493d7d93caadb73cd16afdc561 Mon Sep 17 00:00:00 2001 From: Johannes Pfeifer <jpfeifer@gmx.de> Date: Wed, 22 Sep 2021 09:56:33 +0200 Subject: [PATCH] ramst_initval_file.mod: move to non-deprecated syntax (cherry picked from commit 76b3f53d0bb9bd14cc39b016da1b58faa288edee) --- tests/histval_initval_file/ramst_initval_file.mod | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/histval_initval_file/ramst_initval_file.mod b/tests/histval_initval_file/ramst_initval_file.mod index 8e72fe7504..fb0bf92936 100644 --- a/tests/histval_initval_file/ramst_initval_file.mod +++ b/tests/histval_initval_file/ramst_initval_file.mod @@ -24,7 +24,7 @@ end; steady; -initval_file(filename = ramst_initval_file_data_row_vec_mat); +initval_file(datafile = ramst_initval_file_data_row_vec_mat); perfect_foresight_setup(periods=200); if oo_.exo_simul(2) ~= 1.2 error('initval_file problem with exogenous variable'); @@ -40,7 +40,7 @@ end oo_.exo_simul = []; oo_.endo_simul = []; -initval_file(filename = ramst_initval_file_data_col_vec_mat); +initval_file(datafile = ramst_initval_file_data_col_vec_mat); perfect_foresight_setup(periods=200); if oo_.exo_simul(2) ~= 1.2 @@ -55,7 +55,7 @@ if ~oo_.deterministic_simulation.status end if ispc() - initval_file(filename = ramst_initval_file_excel); + initval_file(datafile = ramst_initval_file_excel); perfect_foresight_setup(periods=200); perfect_foresight_solver; if ~oo_.deterministic_simulation.status -- GitLab