Block decomposition: fix bug with mfs > 0 introduced in 5431451db3

issue#70
Sébastien Villemot 2020-04-17 18:19:07 +02:00
parent a741799f90
commit 1d92adacf4
No known key found for this signature in database
GPG Key ID: 2CECE9350ECEBE4A
1 changed files with 1 additions and 1 deletions

View File

@ -391,7 +391,7 @@ VariableDependencyGraph::reorderRecursiveVariables(const set<int> &feedback_vert
{
vector<int> reordered_vertices;
VariableDependencyGraph G(*this);
auto v_index = get(vertex_index, G);
auto v_index = get(vertex_index1, G);
set<int, greater<int>> fv;
for (auto its = feedback_vertices.begin(); its != feedback_vertices.end(); ++its)
fv.insert(*its);