Preprocessor: changing return order of parameter derivatives to match Marco's code

issue#70
Sébastien Villemot 2010-06-04 09:57:56 +03:00
parent c54f60dd23
commit a47a639330
1 changed files with 1 additions and 1 deletions

View File

@ -2739,7 +2739,7 @@ DynamicModel::writeParamsDerivativesFile(const string &basename) const
cerr << "ERROR: Can't open file " << filename << " for writing" << endl;
exit(EXIT_FAILURE);
}
paramsDerivsFile << "function [rp, rpp, gp, gpp, hp] = " << basename << "_params_derivs(y, x, params, it_)" << endl
paramsDerivsFile << "function [rp, gp, rpp, gpp, hp] = " << basename << "_params_derivs(y, x, params, it_)" << endl
<< "%" << endl
<< "% Warning : this file is generated automatically by Dynare" << endl
<< "% from model file (.mod)" << endl << endl;