Fix previous patch.

* src/tgbaalgos/scc.cc (scc_map::update_supp_rec): Also take the
label of the outgoing edges into account.
This commit is contained in:
Alexandre Duret-Lutz 2009-09-28 15:29:31 +02:00
parent fd0de04d24
commit 1208365b8c
2 changed files with 8 additions and 1 deletions

View file

@ -120,7 +120,7 @@ namespace spot
res = scc_map_[state].supp;
for (it = s.begin(); it != s.end(); ++it)
res &= update_supp_rec(it->first);
res &= update_supp_rec(it->first) & bdd_support(it->second);
}
return res;