#acl DynareWriterGroup:read,write,delete,revert DynareTeamGroup:read,write,delete,revert,admin All:read ## page was renamed from ParserV4Bugs = Outstanding bugs = * The macroprocessor fails when the file ends with {{{@#endif}}} or {{{@#endfor}}} without a new line at the EOF * Expr``Node::collectEndogenous() returns the empty set when called on a model local variable node (is this really a bug?) -- SébastienVillemot <> * The block '''estimated_params_init''' does not initialize the standard deviations of the shocks and dsge_prior_weight. * temporary terms for static file are incorrectly computed in SparseDLL mode (should separate temporary terms for the static file from those for the dynamic file since the output langage is not the same in the two situations) = Resolved bugs = * If USE_DLL is not specified as an option in the model block any mex file (resulting from previous simulations) should be erased before any call to _static or _dynamic, otherwise matlab considers the mex file and not the m files. '''Fixed in r2583''' -- SébastienVillemot <> * mex files produced with USE_DLL should return space matrices. Currently it conflicts with sparse_hessian_times_B_kronecker_C at order=2 -- MichelJuillard <> '''Fixed in r2572''' -- SébastienVillemot <> * estimation statement doesn't accept order option '''Fixed in r2021''' -- SébastienVillemot <> * Since r1717, second order derivatives always computed, even with order=1 -- SébastienVillemot <> '''Fixed in r1809''' -- -- SébastienVillemot <> * missleading error message when LN is used out of place. LN should be defined as a token different from LOG but trigger the same actions in Dynare``Bison. -- MichelJuillard <> '''Fixed in r1487''' -- SébastienVillemot <> * Bug with USE_DLL: the generated c codes seem correct (I found no differences between _dynamic.c and _dynamic_.m), but the jacobian obtained using the mex files is wrong. I've got an example where only the first two columns of the jacobian matrix are (wrongly) filled. This results in a lot of NaN eigenvalues (Blanchard & Kahn conditions are not satisfied) '''Fixed in r1384''' -- SébastienVillemot <> * Bugs related to the USE_DLL option: * Near the top of .m, {{{if exist(_static.c))}}} should be replaced by {{{if exist('_static.c')}}} * Also {{{if exist(_dynamic.c))}}} should be replaced by {{{if exist('_dynamic.c')}}} * A space is missing between the optimization flag (-O) and the name of the c files to be compiled (mex) * The # statement does not work with USE_DLL option . '''Fixed in r1301''' -- SébastienVillemot <>