v4 parser: no temporary terms in local parameters declaration

git-svn-id: https://www.dynare.org/svn/dynare/dynare_v4@1200 ac1d8469-bf42-47a9-8791-bf33cf982152
time-shift
sebastien 2007-02-28 10:21:20 +00:00
parent cf200ccd4c
commit 68c57ae019
2 changed files with 3 additions and 1 deletions

View File

@ -172,7 +172,8 @@ ModelTree::writeLocalParameters(ostream &output, bool is_dynamic) const
int id = it->first;
NodeID value = it->second;
output << symbol_table.getNameByID(eLocalParameter, id) << " = ";
value->writeOutput(output, is_dynamic, temporary_terms, offset);
// Use an empty set for the temporary terms
value->writeOutput(output, is_dynamic, temporary_terms_type(), offset);
output << ";" << endl;
}
}

View File

@ -59,6 +59,7 @@ private:
//! Writes temporary terms
void writeTemporaryTerms(ostream &output, bool is_dynamic) const;
//! Writes local parameters
/*! No temporary term is used in the output, so that local parameters declarations can be safely put before temporary terms declaration in the output files */
void writeLocalParameters(ostream &output, bool is_dynamic) const;
//! Writes model equations
void writeModelEquations(ostream &output, bool is_dynamic) const;