Modifying Zielonka

* spot/twaalgos/game.cc: solve_parity_game now works for any of
the four parity types and partially colored graphs.
 Also removing unnescessary steps from Zielonka.
h: Update
* tests/python/game.py: Update and additional tests
* tests/python/except.py: Remove outdated exception
This commit is contained in:
philipp 2020-09-29 16:38:07 +02:00 committed by Philipp Schlehuber-Caissier
parent 9222e9713b
commit 9124484719
3 changed files with 351 additions and 222 deletions

View file

@ -243,16 +243,6 @@ except RuntimeError as e:
else:
report_missing_exception()
try:
spot.solve_parity_game(a1)
except RuntimeError as e:
tc.assertIn(
"solve_parity_game(): arena must have max-odd acceptance condition",
str(e))
else:
report_missing_exception()
try:
spot.formula_Star(spot.formula("a"), 10, 333)
except OverflowError as e: