* src/tgbaalgos/gv04.cc, src/tgbaalgos/ndfs_result.hxx,

src/tgbaalgos/gtec/ce.cc: Do not account for states that are
computed but not visited by the BFS&DFS used to construct
accepting runs.
This commit is contained in:
Alexandre Duret-Lutz 2005-01-26 17:31:21 +00:00
parent 68c0aa2e38
commit acead199f5
4 changed files with 16 additions and 9 deletions

View file

@ -180,7 +180,6 @@ namespace spot
virtual const state*
filter(const state* s)
{
r->inc_ars_cycle_states();
numbered_state_heap::state_index_p sip = ecs->h->find(s);
// Ignore unknown states.
if (!sip.first)
@ -191,6 +190,7 @@ namespace spot
// Stay in the final SCC.
if (*sip.second < scc_root)
return 0;
r->inc_ars_cycle_states();
return sip.first;
}