record properties as side-effect of is_deterministic() / is_weak() / ...
Fixes #165. * spot/twaalgos/isdet.cc, spot/twaalgos/strength.cc: Here. * spot/twaalgos/isdet.hh, spot/twaalgos/strength.hh, NEWS: Document it. * spot/twaalgos/hoa.cc: Fix output of negated properties. * tests/core/readsave.test: New test case.
This commit is contained in:
parent
b708ab778f
commit
73621e8f17
7 changed files with 49 additions and 11 deletions
|
|
@ -484,9 +484,10 @@ namespace spot
|
|||
prop(" weak");
|
||||
if (aut->prop_inherently_weak() && (verbose || aut->prop_weak() != true))
|
||||
prop(" inherently-weak");
|
||||
if (v1_1 && !aut->prop_terminal() && (aut->prop_weak() || verbose))
|
||||
if (v1_1 && !aut->prop_terminal() && (verbose || aut->prop_weak() != false))
|
||||
prop(" !terminal");
|
||||
if (v1_1 && !aut->prop_weak() && (aut->prop_inherently_weak() || verbose))
|
||||
if (v1_1 && !aut->prop_weak() && (verbose ||
|
||||
aut->prop_inherently_weak() != false))
|
||||
prop(" !weak");
|
||||
if (v1_1 && !aut->prop_inherently_weak())
|
||||
prop(" !inherently-weak");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue