Skip to content
Snippets Groups Projects
Commit 89eecb32 authored by Ferhat Mihoubi's avatar Ferhat Mihoubi
Browse files

Allows for block decomposition if "simul" command is not present in the mod file.

parent 9b3d611a
No related branches found
No related tags found
No related merge requests found
...@@ -324,7 +324,7 @@ ModFile::computingPass(bool no_tmp_terms) ...@@ -324,7 +324,7 @@ ModFile::computingPass(bool no_tmp_terms)
bool hessian = mod_file_struct.order_option >= 2 || mod_file_struct.identification_present; bool hessian = mod_file_struct.order_option >= 2 || mod_file_struct.identification_present;
bool thirdDerivatives = mod_file_struct.order_option == 3; bool thirdDerivatives = mod_file_struct.order_option == 3;
bool paramsDerivatives = mod_file_struct.identification_present; bool paramsDerivatives = mod_file_struct.identification_present;
dynamic_model.computingPass(true, hessian, thirdDerivatives, paramsDerivatives, global_eval_context, no_tmp_terms, false, use_dll, byte_code); dynamic_model.computingPass(true, hessian, thirdDerivatives, paramsDerivatives, global_eval_context, no_tmp_terms, block, use_dll, byte_code);
} }
} }
else else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment