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:
parent
d401fadc65
commit
c7f98fd7f7
2 changed files with 4 additions and 2 deletions
2
NEWS
2
NEWS
|
|
@ -14,6 +14,8 @@ New in spot 1.2.5a (not yet released)
|
|||
this was not the case.
|
||||
- the neverclaim parser will now diagnose redefinitions of
|
||||
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)
|
||||
|
||||
|
|
|
|||
|
|
@ -278,9 +278,9 @@ namespace spot
|
|||
os << "Acceptance: " << num_acc;
|
||||
if (num_acc > 0)
|
||||
{
|
||||
os << " I(0";
|
||||
os << " Inf(0";
|
||||
for (unsigned i = 1; i < num_acc; ++i)
|
||||
os << ")&I(" << i;
|
||||
os << ")&Inf(" << i;
|
||||
os << ')';
|
||||
}
|
||||
else
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue