use mask_keep_accessible_states
* bin/autfilt.cc, spot/twaalgos/isweakscc.cc, spot/twaalgos/remfin.cc, spot/twaalgos/sccinfo.cc: Use mask_keep_accessible_states instead of mask_keep_states.
This commit is contained in:
parent
4c1147e497
commit
3dc084c4f6
4 changed files with 9 additions and 8 deletions
|
|
@ -82,10 +82,10 @@ namespace spot
|
|||
std::vector<bool> keep(aut->num_states(), false);
|
||||
for (auto s: states)
|
||||
keep[s] = true;
|
||||
auto sccaut = mask_keep_states(aut, keep, states.front());
|
||||
auto sccaut = mask_keep_accessible_states(aut, keep, states.front());
|
||||
// Force SBA to false. It does not affect the emptiness
|
||||
// check result, however it prevent recurring into this
|
||||
// procedure, because empty() will call to_tgba() wich will
|
||||
// procedure, because empty() will call to_tgba() which will
|
||||
// call remove_fin()...
|
||||
sccaut->prop_state_acc(false);
|
||||
// If SCCAUT is empty, the SCC is BA-type (and none
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue