Introduce a class to complement a WDBA on-the-fly.

* src/tgba/wdbacomp.hh, src/tgba/wdbacomp.cc: New file.
* src/tgba/Makefile.am: Add them.
* src/tgbaalgos/minimize.cc (minimize_obligation): Use
wdba_complement().
This commit is contained in:
Alexandre Duret-Lutz 2011-01-06 11:40:57 +01:00
parent b9dd72b29b
commit 474e69565b
5 changed files with 347 additions and 7 deletions

View file

@ -1,4 +1,4 @@
## Copyright (C) 2009, 2010 Laboratoire de Recherche et Développement
## Copyright (C) 2009, 2010, 2011 Laboratoire de Recherche et Développement
## de l'Epita (LRDE).
## Copyright (C) 2003, 2004 Laboratoire d'Informatique de Paris 6 (LIP6),
## département Systèmes Répartis Coopératifs (SRC), Université Pierre
@ -51,7 +51,8 @@ tgba_HEADERS = \
tgbasgba.hh \
tgbasafracomplement.hh \
tgbatba.hh \
tgbaunion.hh
tgbaunion.hh \
wdbacomp.hh
noinst_LTLIBRARIES = libtgba.la
libtgba_la_SOURCES = \
@ -75,4 +76,5 @@ libtgba_la_SOURCES = \
tgbascc.cc \
tgbasgba.cc \
tgbatba.cc \
tgbaunion.cc
tgbaunion.cc \
wdbacomp.cc