trunk preprocessor BlockTriangular.cc: fixed misleading error message

git-svn-id: https://www.dynare.org/svn/dynare/trunk@2689 ac1d8469-bf42-47a9-8791-bf33cf982152
issue#70
sebastien 2009-05-25 09:46:40 +00:00
parent 7bcc55c266
commit 518c5fba93
1 changed files with 3 additions and 3 deletions

View File

@ -147,9 +147,9 @@ BlockTriangular::Compute_Normalization(bool *IM, int equation_number, int prolog
{
if (verbose)
{
cerr << "ERROR: Could not normalize static model. Variable "
<< symbol_table.getName(symbol_table.getID(eEndogenous, it - mate_map.begin()))
<< " is not in the maximum cardinality matching." << endl;
cerr << "ERROR: Could not normalize dynamic model. Variable "
<< symbol_table.getName(symbol_table.getID(eEndogenous, it - mate_map.begin()))
<< " is not in the maximum cardinality matching." << endl;
exit(EXIT_FAILURE);
}
return false;