* 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:
parent
68c0aa2e38
commit
acead199f5
4 changed files with 16 additions and 9 deletions
|
|
@ -339,7 +339,6 @@ namespace spot
|
|||
virtual const state*
|
||||
filter(const state* s)
|
||||
{
|
||||
r->inc_ars_cycle_states();
|
||||
// Do not escape the SCC
|
||||
hash_type::const_iterator j = data.h.find(s);
|
||||
if (// This state was never visited so far.
|
||||
|
|
@ -354,6 +353,7 @@ namespace spot
|
|||
delete s;
|
||||
return 0;
|
||||
}
|
||||
r->inc_ars_cycle_states();
|
||||
delete s;
|
||||
return j->first;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue