sccinfo: stop keeping track of conditions between SCCs

They are unused.

* src/twaalgos/sccinfo.cc, src/twaalgos/sccinfo.hh: Do
not keep track of conditions between two SCCs.
* src/twaalgos/minimize.cc, src/twaalgos/ltl2tgba_fm.cc:
Adjust.
This commit is contained in:
Alexandre Duret-Lutz 2015-07-07 21:04:10 +02:00
parent e540eaeee1
commit c8cf86b081
4 changed files with 14 additions and 37 deletions

View file

@ -1198,8 +1198,8 @@ namespace spot
if (!coacc)
{
// ... or if any of its successors is coaccessible.
for (auto& i: sm->succ(n))
if (coaccessible[i.dst])
for (unsigned i: sm->succ(n))
if (coaccessible[i])
{
coacc = true;
break;