Add an algorithm to complement Büchi automata.

* src/tgba/tgbacomplement.hh, src/tgba/tgbacomplement.cc: New
	files. The complementation algorithm.
	* src/tgba/Makefile.am: Adjust.
	* src/tgbatest/complementation.test,
	src/tgbatest/complementation.cc: New files. Test suite for the
	complementation algorithm.
	* src/tgbatest/Makefile.am: Adjust.
	* src/tgbaalgos/Makefile.am: Reformat the header using 80
	columns.
This commit is contained in:
Guillaume Sadegh 2009-02-24 15:01:29 +01:00
parent e48338e8d8
commit c5f8eafb01
8 changed files with 1586 additions and 3 deletions

View file

@ -1,4 +1,4 @@
## Copyright (C) 2003, 2004, 2009 Laboratoire d'Informatique de Paris 6 (LIP6),
## Copyright (C) 2003, 2004, 2009 Laboratoire d'Informatique de Paris 6 (LIP6),
## département Systèmes Répartis Coopératifs (SRC), Université Pierre
## et Marie Curie.
##
@ -41,6 +41,7 @@ tgba_HEADERS = \
tgbabddcoredata.hh \
tgbabddfactory.hh \
tgbascc.hh \
tgbacomplement.hh \
tgbaexplicit.hh \
tgbaproduct.hh \
tgbatba.hh \
@ -60,6 +61,7 @@ libtgba_la_SOURCES = \
tgbabddconcreteproduct.cc \
tgbabddcoredata.cc \
tgbascc.cc \
tgbacomplement.cc \
tgbaexplicit.cc \
tgbaproduct.cc \
tgbatba.cc \