clean up printing

issue#70
Houtan Bastani 2015-08-21 16:28:43 +02:00
parent 34e649afc7
commit 4a4a4c1d54
3 changed files with 14 additions and 14 deletions

View File

@ -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;
}
else
{
output << modstruct << "equations_tags = {" << endl;

View File

@ -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