implement dualize to complement automatons

* NEWS: Mention the implementation
* python/spot/impl.i: Add dualize() to python interface.
* spot/twaalgos/Makefile.am: Add dualize.cc,hh to the build
* spot/twaalgos/dualize.cc: Implement dualize() that takes an automaton
  and returns its dual
* spot/twaalgos/dualize.hh: Implement dualize()
* tests/Makefile.am: Add dualize tests to the test suite
* tests/python/dualize.py: Test cases for dualize
This commit is contained in:
Thomas Medioni 2017-03-23 12:17:28 +01:00
parent cc0e9a5e1e
commit c9d8d41fd3
7 changed files with 988 additions and 0 deletions

View file

@ -43,6 +43,7 @@ twaalgos_HEADERS = \
dot.hh \
dtbasat.hh \
dtwasat.hh \
dualize.hh \
emptiness.hh \
emptiness_stats.hh \
gv04.hh \
@ -102,6 +103,7 @@ libtwaalgos_la_SOURCES = \
dot.cc \
dtbasat.cc \
dtwasat.cc \
dualize.cc \
emptiness.cc \
gv04.cc \
hoa.cc \