* src/tgbaalgos/hoa.cc: Use is_buchi() and is_true().
This commit is contained in:
parent
5b2c7b55ed
commit
da2ccdb2ed
1 changed files with 2 additions and 2 deletions
|
|
@ -254,9 +254,9 @@ namespace spot
|
||||||
unsigned num_acc = aut->acc().num_sets();
|
unsigned num_acc = aut->acc().num_sets();
|
||||||
if (aut->acc().is_generalized_buchi())
|
if (aut->acc().is_generalized_buchi())
|
||||||
{
|
{
|
||||||
if (num_acc == 0)
|
if (aut->acc().is_true())
|
||||||
os << "acc-name: all";
|
os << "acc-name: all";
|
||||||
else if (num_acc == 1)
|
else if (aut->acc().is_buchi())
|
||||||
os << "acc-name: Buchi";
|
os << "acc-name: Buchi";
|
||||||
else
|
else
|
||||||
os << "acc-name: generalized-Buchi " << num_acc;
|
os << "acc-name: generalized-Buchi " << num_acc;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue