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:
parent
fd0de04d24
commit
1208365b8c
2 changed files with 8 additions and 1 deletions
|
|
@ -1,3 +1,10 @@
|
||||||
|
2009-09-28 Alexandre Duret-Lutz <adl@lrde.epita.fr>
|
||||||
|
|
||||||
|
Fix previous patch.
|
||||||
|
|
||||||
|
* src/tgbaalgos/scc.cc (scc_map::update_supp_rec): Also take the
|
||||||
|
label of the outgoing edges into account.
|
||||||
|
|
||||||
2009-09-18 Alexandre Duret-Lutz <adl@lrde.epita.fr>
|
2009-09-18 Alexandre Duret-Lutz <adl@lrde.epita.fr>
|
||||||
|
|
||||||
Optimize previous patch.
|
Optimize previous patch.
|
||||||
|
|
|
||||||
|
|
@ -120,7 +120,7 @@ namespace spot
|
||||||
res = scc_map_[state].supp;
|
res = scc_map_[state].supp;
|
||||||
|
|
||||||
for (it = s.begin(); it != s.end(); ++it)
|
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;
|
return res;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue