Correct a bug related to the number of minimum feedback variables reported during the preprocessing step

issue#70
Ferhat Mihoubi 2011-09-20 15:02:27 +02:00
parent c4e0158e44
commit 6ebc409d03
1 changed files with 1 additions and 1 deletions

View File

@ -745,7 +745,7 @@ ModelTree::printBlockDecomposition(const vector<pair<int, int> > &blocks) const
if (size > largest_block)
{
largest_block = size;
Nb_feedback_variable = blocks[Nb_SimulBlocks-1].second;
Nb_feedback_variable = getBlockMfs(block);
}
}
}