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:
Alexandre Duret-Lutz 2016-10-18 22:39:54 +02:00
parent 4c1147e497
commit 3dc084c4f6
4 changed files with 9 additions and 8 deletions

View file

@ -330,7 +330,8 @@ namespace spot
k.resize(aut_->num_states());
for (auto i: node.states_)
k[i] = true;
if (mask_keep_states(aut_, k, node.states_.front())->is_empty())
if (mask_keep_accessible_states(aut_, k, node.states_.front())
->is_empty())
node.rejecting_ = true;
else
node.accepting_ = true;