predetermined_variables: fixed a bug in M_.predetermined_variables

git-svn-id: https://www.dynare.org/svn/dynare/trunk@3144 ac1d8469-bf42-47a9-8791-bf33cf982152
issue#70
sebastien 2009-11-09 11:07:31 +00:00
parent 6bd2cb04de
commit 3fdeeca2a1
1 changed files with 1 additions and 1 deletions

View File

@ -225,7 +225,7 @@ SymbolTable::writeOutput(ostream &output) const throw (NotYetFrozenException)
output << "M_.predetermined_variables = [ ";
for(set<int>::const_iterator it = predetermined_variables.begin();
it != predetermined_variables.end(); it++)
output << getTypeSpecificID(*it) << " ";
output << getTypeSpecificID(*it)+1 << " ";
output << "];" << endl;
}
}