Skip to content
Snippets Groups Projects
Commit c987fa0a authored by Sébastien Villemot's avatar Sébastien Villemot
Browse files

Provide dynamic 3rd derivaties for estimation w/ analytic derivation

(cherry picked from commit f58b9b75)
parent 36202d13
No related branches found
No related tags found
No related merge requests found
......@@ -403,7 +403,7 @@ ModFile::computingPass(bool no_tmp_terms)
exit(EXIT_FAILURE);
}
bool hessian = mod_file_struct.order_option >= 2 || mod_file_struct.identification_present || mod_file_struct.estimation_analytic_derivation;
bool thirdDerivatives = mod_file_struct.order_option == 3;
bool thirdDerivatives = mod_file_struct.order_option == 3 || mod_file_struct.estimation_analytic_derivation;
bool paramsDerivatives = mod_file_struct.identification_present || mod_file_struct.estimation_analytic_derivation;
dynamic_model.computingPass(true, hessian, thirdDerivatives, paramsDerivatives, global_eval_context, no_tmp_terms, block, use_dll, byte_code);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment