Skip to content
Snippets Groups Projects
Commit ee5e86f9 authored by michel's avatar michel
Browse files

corrected typo in preprocessing of exo_det_names

git-svn-id: https://www.dynare.org/svn/dynare/dynare_v4@2314 ac1d8469-bf42-47a9-8791-bf33cf982152
parent 3bc44e55
No related branches found
No related tags found
No related merge requests found
...@@ -91,7 +91,7 @@ SymbolTable::writeOutput(ostream &output) const ...@@ -91,7 +91,7 @@ SymbolTable::writeOutput(ostream &output) const
output << "M_.exo_det_names_tex = '" << getTeXNameByID(eExogenousDet, 0) << "';" << endl; output << "M_.exo_det_names_tex = '" << getTeXNameByID(eExogenousDet, 0) << "';" << endl;
for (int id = 1; id < exo_det_nbr; id++) for (int id = 1; id < exo_det_nbr; id++)
{ {
output << "M_.exo_det_names = srtvcat(M_.exo_det_names, '" << getNameByID(eExogenousDet, id) << "');" << endl output << "M_.exo_det_names = strvcat(M_.exo_det_names, '" << getNameByID(eExogenousDet, id) << "');" << endl
<< "M_.exo_det_names_tex = strvcat(M_.exo_det_names_tex, '" << getTeXNameByID(eExogenousDet, id) << "');" << endl; << "M_.exo_det_names_tex = strvcat(M_.exo_det_names_tex, '" << getTeXNameByID(eExogenousDet, id) << "');" << endl;
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment