From e9f9aa21840f19db6b3882a2e6998dbffaa02694 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Adjemian=28Charybdis=29?= Date: Tue, 22 Mar 2016 16:04:33 +0100 Subject: [PATCH] Allow irf_shocks in DSGE-VAR models. --- ComputingTasks.cc | 7 ------- 1 file changed, 7 deletions(-) diff --git a/ComputingTasks.cc b/ComputingTasks.cc index c84e3b6b..9fd1e816 100644 --- a/ComputingTasks.cc +++ b/ComputingTasks.cc @@ -559,13 +559,6 @@ EstimationStatement::checkPass(ModFileStructure &mod_file_struct, WarningConsoli it = options_list.num_options.find("dsge_var"); if (it != options_list.num_options.end()) - // Ensure that irf_shocks & dsge_var have not both been passed - if (options_list.symbol_list_options.find("irf_shocks") != options_list.symbol_list_options.end()) - { - cerr << "The irf_shocks and dsge_var options may not both be passed to estimation." << endl; - exit(EXIT_FAILURE); - } - else // Fill in mod_file_struct.dsge_var_calibrated mod_file_struct.dsge_var_calibrated = it->second;