hoa: add a stutter-sensitive property
* src/twa/twa.hh: Support this new property. * src/twaalgos/stutter.cc: Set it if needed. * src/twaalgos/hoa.cc: Output it. * src/tests/stutter-tgba.test: More tests.
This commit is contained in:
parent
fe2fc88fc6
commit
6bc2fa2431
4 changed files with 36 additions and 7 deletions
|
|
@ -327,8 +327,11 @@ namespace spot
|
|||
prop(" complete");
|
||||
if (md.is_deterministic)
|
||||
prop(" deterministic");
|
||||
assert(!(aut->is_stutter_invariant() && aut->is_stutter_sensitive()));
|
||||
if (aut->is_stutter_invariant())
|
||||
prop(" stutter-invariant");
|
||||
if (aut->is_stutter_sensitive())
|
||||
prop(" stutter-sensitive");
|
||||
if (aut->is_inherently_weak())
|
||||
prop(" inherently-weak");
|
||||
os << nl;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue