From a60f5a81fed275dbfe8c7409ded0eda78e2d64a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Adjemian=20=28Lupi=29?= Date: Thu, 3 Nov 2016 23:09:31 +0100 Subject: [PATCH] Reverted merge of pr#1323. --- tests/Makefile.am | 1 - tests/decision_rules/ar_qz_test.mod | 31 ----------------------------- 2 files changed, 32 deletions(-) delete mode 100644 tests/decision_rules/ar_qz_test.mod diff --git a/tests/Makefile.am b/tests/Makefile.am index 0ccb1214a..674904a42 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -271,7 +271,6 @@ MODFILES = \ trend_var/fs2000_log_nonstationary.mod \ decision_rules/third_order/FV2011.mod \ decision_rules/example1.mod \ - decision_rules/ar_qz_test.mod \ shock_decomposition/example1_calib_shock_decomp.mod \ shock_decomposition/fs2000_est.mod \ shock_decomposition/fs2000_est_varlist.mod \ diff --git a/tests/decision_rules/ar_qz_test.mod b/tests/decision_rules/ar_qz_test.mod deleted file mode 100644 index 8df84b8f5..000000000 --- a/tests/decision_rules/ar_qz_test.mod +++ /dev/null @@ -1,31 +0,0 @@ -var white_noise ar1 junk; -varexo e; - -parameters phi; - -phi=1; - -model; -white_noise=e; -ar1=phi*ar1(-1)+e; -junk=0.9*junk(+1); -end; - -shocks; -var e = 1; -end; - -options_.qz_criterium=1+1e-6; -stoch_simul(order=1); - -options_.qz_criterium=1-1e-6; -error_indicator=0; -try - info=stoch_simul(var_list_) - error_indicator=1 -catch - -end -if error_indicator - error('qz_criterion did not work') -end \ No newline at end of file