hierarchy: avoid sbacc()

* spot/tl/hierarchy.cc (is_recurrence): Do not request state-based
acceptance, now that the Rabin->DBA conversionn works on
transition-based acceptance as well.
This commit is contained in:
Alexandre Duret-Lutz 2017-08-15 14:44:31 +02:00
parent a3f5834249
commit 2e8a67027f

View file

@ -41,8 +41,7 @@ namespace spot
// BA will preserve determinism if possible.
spot::postprocessor p;
p.set_type(spot::postprocessor::Generic);
p.set_pref(spot::postprocessor::Deterministic
| spot::postprocessor::SBAcc);
p.set_pref(spot::postprocessor::Deterministic);
p.set_level(spot::postprocessor::Low);
auto dra = p.run(aut);
if (dra->acc().is_generalized_buchi())