Add a class to represent Transition-based Alternating Automata (TAA).
* misc/Makefile.am, misc/bbop.cc, misc/bddop.hh: Factorize some code on BDDs to compute all_acceptance_conditions from neg_acceptance_condition. * src/tgba/Makefile.am, src/tgbatest/Makefile.am: Adjust. * src/tgba/taa.cc, src/tgba/taa.hh: The TAA class. * src/tgba/tgbaexplicit.hh: Use the factorized code in bddop.hh. * src/tgbatest/taa.cc, src/tgbatest/taa.test: Some test cases.
This commit is contained in:
parent
98215ed9a4
commit
20c1f01e48
11 changed files with 780 additions and 19 deletions
|
|
@ -41,6 +41,7 @@ check_PROGRAMS = \
|
|||
readsave \
|
||||
reductgba \
|
||||
reduccmp \
|
||||
taa \
|
||||
tgbaread \
|
||||
tripprod
|
||||
|
||||
|
|
@ -62,6 +63,7 @@ readsave_SOURCES = readsave.cc
|
|||
reductgba_SOURCES = reductgba.cc
|
||||
reduccmp_SOURCES = reductgba.cc
|
||||
reduccmp_CXXFLAGS = -DREDUCCMP
|
||||
taa_SOURCES = taa.cc
|
||||
tgbaread_SOURCES = tgbaread.cc
|
||||
tripprod_SOURCES = tripprod.cc
|
||||
|
||||
|
|
@ -70,6 +72,7 @@ tripprod_SOURCES = tripprod.cc
|
|||
TESTS = \
|
||||
eltl2tgba.test \
|
||||
explicit.test \
|
||||
taa.test \
|
||||
tgbaread.test \
|
||||
readsave.test \
|
||||
ltl2tgba.test \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue