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:
parent
b2c2411bcc
commit
604971d651
1 changed files with 6 additions and 1 deletions
|
|
@ -149,7 +149,12 @@ namespace spot
|
||||||
// ignored.
|
// ignored.
|
||||||
a = scc_filter_states(a);
|
a = scc_filter_states(a);
|
||||||
else if (scc_filter_ > 0)
|
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)
|
if (type_ == Monitor)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue