Skip to content
Snippets Groups Projects
Commit fbeae961 authored by Houtan Bastani's avatar Houtan Bastani
Browse files

aesthetic fix

parent 7282b7bf
No related branches found
No related tags found
No related merge requests found
...@@ -504,8 +504,7 @@ VarModelTable::writeOutput(const string &basename, ostream &output) const ...@@ -504,8 +504,7 @@ VarModelTable::writeOutput(const string &basename, ostream &output) const
int eqn, lag, lhs_symb_id; int eqn, lag, lhs_symb_id;
tie (eqn, lag, lhs_symb_id) = it.first; tie (eqn, lag, lhs_symb_id) = it.first;
int colidx = (int) distance(lhs.begin(), find(lhs.begin(), lhs.end(), lhs_symb_id)); int colidx = (int) distance(lhs.begin(), find(lhs.begin(), lhs.end(), lhs_symb_id));
ar_output << " ar(" << eqn + 1 << ", " << colidx + 1 << ", " << lag ar_output << " ar(" << eqn + 1 << ", " << colidx + 1 << ", " << lag << ") = ";
<< ") = ";
it.second->writeOutput(ar_output, ExprNodeOutputType::matlabDynamicModel); it.second->writeOutput(ar_output, ExprNodeOutputType::matlabDynamicModel);
ar_output << ";" << endl; ar_output << ";" << endl;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment