diff --git a/ComputingTasks.cc b/ComputingTasks.cc index d4ff1708..a3b260fe 100644 --- a/ComputingTasks.cc +++ b/ComputingTasks.cc @@ -95,6 +95,9 @@ void SimulStatement::checkPass(ModFileStructure &mod_file_struct, WarningConsolidation &warnings) { mod_file_struct.simul_present = true; + + // The following is necessary to allow shocks+endval+simul in a loop + mod_file_struct.shocks_present_but_simul_not_yet = false; } void diff --git a/NumericalInitialization.cc b/NumericalInitialization.cc index 63d1d73a..98327d66 100644 --- a/NumericalInitialization.cc +++ b/NumericalInitialization.cc @@ -150,9 +150,9 @@ EndValStatement::EndValStatement(const init_values_t &init_values_arg, void EndValStatement::checkPass(ModFileStructure &mod_file_struct, WarningConsolidation &warnings) { - if (mod_file_struct.shocks_present) + if (mod_file_struct.shocks_present_but_simul_not_yet) { - cerr << "ERROR: Putting a \"shocks\" block before an \"endval\" block is not permitted. Please swap the two blocks. This limitation will be removed in the next major release of Dynare." << endl; + cerr << "ERROR: Putting a \"shocks\" block before an \"endval\" block is not permitted. Please swap the two blocks. This limitation will be removed in a future release of Dynare." << endl; exit(EXIT_FAILURE); } } diff --git a/Shocks.cc b/Shocks.cc index 949ff5f1..3536053e 100644 --- a/Shocks.cc +++ b/Shocks.cc @@ -196,7 +196,7 @@ void ShocksStatement::checkPass(ModFileStructure &mod_file_struct, WarningConsolidation &warnings) { // Workaround for trac ticket #35 - mod_file_struct.shocks_present = true; + mod_file_struct.shocks_present_but_simul_not_yet = true; // Determine if there is a calibrated measurement error for (var_and_std_shocks_t::const_iterator it = var_shocks.begin(); @@ -245,7 +245,7 @@ void MShocksStatement::checkPass(ModFileStructure &mod_file_struct, WarningConsolidation &warnings) { // Workaround for trac ticket #35 - mod_file_struct.shocks_present = true; + mod_file_struct.shocks_present_but_simul_not_yet = true; } ConditionalForecastPathsStatement::ConditionalForecastPathsStatement(const AbstractShocksStatement::det_shocks_t &paths_arg, const SymbolTable &symbol_table_arg) : diff --git a/Statement.cc b/Statement.cc index 4c890baf..48abb3a9 100644 --- a/Statement.cc +++ b/Statement.cc @@ -37,7 +37,7 @@ ModFileStructure::ModFileStructure() : identification_present(false), estimation_analytic_derivation(false), partial_information(false), - shocks_present(false), + shocks_present_but_simul_not_yet(false), histval_present(false), k_order_solver(false), calibrated_measurement_errors(false), diff --git a/Statement.hh b/Statement.hh index 3847d3cc..1c5c0082 100644 --- a/Statement.hh +++ b/Statement.hh @@ -69,9 +69,11 @@ public: bool estimation_analytic_derivation; //! Whether the option partial_information is given to stoch_simul/estimation/osr/ramsey_policy bool partial_information; - //! Whether a shocks or mshocks block is present - /*! Used for the workaround for trac ticket #35 */ - bool shocks_present; + //! Whether a shocks or mshocks block has been parsed and no simul command yet run + /*! Used for the workaround for trac ticket #35. When a simul command is + seen, this flag is cleared in order to allow a sequence + shocks+endval+simul in a loop */ + bool shocks_present_but_simul_not_yet; //! Whether a histval bloc is present /*! Used for the workaround for trac ticket #157 */ bool histval_present;