Throw an error if mh_tune_guess is used without mh_tune_jscale.

issue#70
Stéphane Adjemian (Charybdis) 2020-02-29 09:54:18 +01:00
parent 3c6a23137b
commit 2a048a487c
Signed by: stepan
GPG Key ID: 295C1FE89E17EB3C
1 changed files with 7 additions and 0 deletions

View File

@ -1222,6 +1222,13 @@ EstimationStatement::checkPass(ModFileStructure &mod_file_struct, WarningConsoli
exit(EXIT_FAILURE);
}
if (options_list.num_options.find("mh_tune_jscale.guess") != options_list.num_options.end()
&& options_list.num_options.find("mh_tune_jscale.target") == options_list.num_options.end())
{
cerr << "ERROR: The option mh_tune_guess in estimation statement cannot be used without option mh_tune_jscale." << endl;
exit(EXIT_FAILURE);
}
/* Check that we are not trying to estimate a parameter appearing in the
planner discount factor (see dynare#1173) */
vector<int> estimated_params_in_planner_discount;