From 4a4a4c1d54664121e686a4135275b9f24ee62f6b Mon Sep 17 00:00:00 2001 From: Houtan Bastani Date: Fri, 21 Aug 2015 16:28:43 +0200 Subject: [PATCH] clean up printing --- DynamicModel.cc | 8 ++++---- StaticModel.cc | 2 +- SymbolTable.cc | 18 +++++++++--------- 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/DynamicModel.cc b/DynamicModel.cc index 694dab45..adb3a4aa 100644 --- a/DynamicModel.cc +++ b/DynamicModel.cc @@ -2554,14 +2554,14 @@ DynamicModel::writeOutput(ostream &output, const string &basename, bool block_de // Write equation tags if (julia) { - output << modstruct << "equations_tags = [" << endl; + output << modstruct << "equation_tags = [" << endl; for (size_t i = 0; i < equation_tags.size(); i++) - output << " EquationTag(" << equation_tags[i].first + 1 << " , \"" + output << " EquationTag(" + << equation_tags[i].first + 1 << " , \"" << equation_tags[i].second.first << "\" , \"" << equation_tags[i].second.second << "\")" << endl; - output << "]" << endl; + output << " ]" << endl; } - else { output << modstruct << "equations_tags = {" << endl; diff --git a/StaticModel.cc b/StaticModel.cc index 5407ffcf..a7e52267 100644 --- a/StaticModel.cc +++ b/StaticModel.cc @@ -1483,7 +1483,7 @@ StaticModel::writeStaticModel(ostream &StaticOutput, bool use_dll, bool julia) c << model_output.str() << " #" << endl << " # Jacobian matrix" << endl - << " #" << endl << endl + << " #" << endl << jacobian_output.str() << " if ~isreal(g1)" << endl << " g1 = real(g1)+2*imag(g1);" << endl diff --git a/SymbolTable.cc b/SymbolTable.cc index 81350d3b..312b6fd3 100644 --- a/SymbolTable.cc +++ b/SymbolTable.cc @@ -724,24 +724,24 @@ SymbolTable::writeJuliaOutput(ostream &output) const throw (NotYetFrozenExceptio throw NotYetFrozenException(); output << "# Endogenous Variables" << endl - << "model.endo = [" << endl; + << "model.endo = [" << endl; if (endo_nbr() > 0) for (int id = 0; id < endo_nbr(); id++) - output << " DynareModel.Endo(\"" + output << " DynareModel.Endo(\"" << getName(endo_ids[id]) << "\", \"" << getTeXName(endo_ids[id]) << "\", \"" << getLongName(endo_ids[id]) << "\")" << endl; - output << " ]" << endl; + output << " ]" << endl; output << "# Exogenous Variables" << endl - << "model.exo = [" << endl; + << "model.exo = [" << endl; if (exo_nbr() > 0) for (int id = 0; id < exo_nbr(); id++) - output << " DynareModel.Exo(\"" + output << " DynareModel.Exo(\"" << getName(exo_ids[id]) << "\", \"" << getTeXName(exo_ids[id]) << "\", \"" << getLongName(exo_ids[id]) << "\")" << endl; - output << " ]" << endl; + output << " ]" << endl; if (exo_det_nbr() > 0) { @@ -757,14 +757,14 @@ SymbolTable::writeJuliaOutput(ostream &output) const throw (NotYetFrozenExceptio } output << "# Parameters" << endl - << "model.param = [" << endl; + << "model.param = [" << endl; if (param_nbr() > 0) for (int id = 0; id < param_nbr(); id++) - output << " DynareModel.Param(\"" + output << " DynareModel.Param(\"" << getName(param_ids[id]) << "\", \"" << getTeXName(param_ids[id]) << "\", \"" << getLongName(param_ids[id]) << "\")" << endl; - output << " ]" << endl; + output << " ]" << endl; output << "model.orig_endo_nbr = " << orig_endo_nbr() << endl;