postproc: use scc_filter_states on SBA

* src/tgbaalgos/postproc.cc: Here.  Otherwise, reading
a neverclaim with autfilt would loose the SBA property
and degeneralize again.
This commit is contained in:
Alexandre Duret-Lutz 2015-01-09 22:23:55 +01:00
parent b2c2411bcc
commit 604971d651

View file

@ -149,7 +149,12 @@ namespace spot
// ignored.
a = scc_filter_states(a);
else if (scc_filter_ > 0)
a = scc_filter(a, scc_filter_ > 1);
{
if (type_ == BA && a->is_sba())
a = scc_filter_states(a);
else
a = scc_filter(a, scc_filter_ > 1);
}
if (type_ == Monitor)
{