hoaf: rename I(i) as Inf(i).

We just changed the format specification today.

* src/tgbaalgos/hoaf.cc: Here.
* NEWS: mention it.
This commit is contained in:
Alexandre Duret-Lutz 2014-09-06 11:15:45 +02:00
parent d401fadc65
commit c7f98fd7f7
2 changed files with 4 additions and 2 deletions

2
NEWS
View file

@ -14,6 +14,8 @@ New in spot 1.2.5a (not yet released)
this was not the case. this was not the case.
- the neverclaim parser will now diagnose redefinitions of - the neverclaim parser will now diagnose redefinitions of
state labels. state labels.
- the acceptance specification in the HOA format output have been
adjusted to match recent changes in the format specifications.
New in spot 1.2.5 (2014-08-21) New in spot 1.2.5 (2014-08-21)

View file

@ -278,9 +278,9 @@ namespace spot
os << "Acceptance: " << num_acc; os << "Acceptance: " << num_acc;
if (num_acc > 0) if (num_acc > 0)
{ {
os << " I(0"; os << " Inf(0";
for (unsigned i = 1; i < num_acc; ++i) for (unsigned i = 1; i < num_acc; ++i)
os << ")&I(" << i; os << ")&Inf(" << i;
os << ')'; os << ')';
} }
else else