* src/tgbaalgos/emptinesscheck.cc (emptiness_check::complete_cycle):
Check whether the state is in the current SCC before passing it to h_filt().
This commit is contained in:
parent
10b2511dda
commit
f83a21cf94
2 changed files with 12 additions and 2 deletions
|
|
@ -425,11 +425,15 @@ namespace spot
|
|||
todo.pop_front();
|
||||
for (i->first(); !i->done(); i->next())
|
||||
{
|
||||
const state* dest = h_filt(i->current_state());
|
||||
const state* dest = i->current_state();
|
||||
|
||||
// Do not escape this SCC.
|
||||
if (!scc.has_state(dest))
|
||||
continue;
|
||||
{
|
||||
delete dest;
|
||||
continue;
|
||||
}
|
||||
dest = h_filt(dest);
|
||||
|
||||
bdd cond = i->current_condition();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue