- Store the incidence matrix containing reordered equations and variable in block_structure

issue#70
Ferhat Mihoubi 2010-10-24 18:54:30 +02:00
parent c89682670d
commit ab311cc0fd
1 changed files with 1 additions and 1 deletions

View File

@ -2333,7 +2333,7 @@ DynamicModel::writeOutput(ostream &output, const string &basename, bool block_de
int lag = getLagByDerivID(deriv_id);
int eqr = inv_equation_reordered[eq];
int varr = inv_variable_reordered[var];
lag_row_incidence[make_pair(lag, make_pair(eqr, varr))] = 1;
lag_row_incidence[make_pair(lag, make_pair(eq, var))] = 1;
}
}
int prev_lag = -1000000;