- reverting part of last change to handling of Qi and Ri in ComputingTasks.cc: r is the number of lags present in the restrictions
- fixing handling of Dirichlet option in mhm_input.dat. This fixes the strange Signal messages when running C executables.
- fix path in test_upper_cholesky.mod
issue#70
Michel Juillard 2010-03-15 12:03:37 +01:00
parent 424849830c
commit 9a8331da83
1 changed files with 1 additions and 1 deletions

View File

@ -1102,7 +1102,7 @@ SvarIdentificationStatement::writeOutput(ostream &output, const string &basename
int n = symbol_table.endo_nbr();
// int m = symbol_table.exo_nbr();
int m = 1; // this is the constant, not the shocks
int r = getMaxLag()+1;
int r = getMaxLag();
int k = r*n+m;
if (k < 1)