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

:bug: Crash when writing the (static) set_auxiliary_variables file in the presence...

:bug: Crash when writing the (static) set_auxiliary_variables file in the presence of external functions
parent acdfc1ad
Branches
No related tags found
No related merge requests found
......@@ -769,7 +769,7 @@ StaticModel::writeAuxVarRecursiveDefinitions(ostream &output, ExprNodeOutputType
dynamic_cast<ExprNode *>(aux_equation)->writeExternalFunctionOutput(output, output_type, {}, {}, tef_terms);
for (auto aux_equation : aux_equations)
{
dynamic_cast<ExprNode *>(aux_equation->substituteStaticAuxiliaryDefinition())->writeOutput(output, output_type);
dynamic_cast<ExprNode *>(aux_equation->substituteStaticAuxiliaryDefinition())->writeOutput(output, output_type, {}, {}, tef_terms);
output << ";" << endl;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment