toparity: rename iar_old()/iar_maybe_old() to iar()/iar_maybe()

* spot/twaalgos/toparity.hh, spot/twaalgos/toparity.cc: Use the
original names, to minimize differences with spot 2.8.  Deprecate
them.
* tests/python/except.py: Adjust.
* NEWS: Mention the change.
This commit is contained in:
Alexandre Duret-Lutz 2020-04-05 10:54:55 +02:00
parent 0a95314dca
commit 2b918d1c02
4 changed files with 44 additions and 27 deletions

12
NEWS
View file

@ -100,8 +100,16 @@ New in spot 2.8.7.dev (not yet released)
same transition structure (where the ..._maybe() variant would
modify the Rabin automaton if needed).
- to_parity() now combines several strategies for paritizing any
automaton.
- to_parity() has been rewritten now combines several strategies for
paritizing automata with any acceptance condition.
Backward-incompatible changes:
- iar() and iar_maybe() have been moved from
spot/twaalgos/rabin2parity.hh spot/twaalgos/toparity.hh and marked
as deprecated, they should be replaced by to_parity(). In case
the input is Rabin-like or Streett-like, to_parity() should be at
least as good as iar().
New in spot 2.8.7 (2020-03-13)