Rename the class taa as taa_tgba.
* src/tgba/taa.cc, src/tgba/taa.hh: Rename as ... * src/tgba/taatgba.cc, src/tgba/taatgba.hh: ... these, and rename the class taa as taa_tgba. * src/tgbaalgos/ltl2taa.cc, src/tgbaalgos/ltl2taa.hh, src/tgbaalgos/Makefile.am: Adjust. * src/tgbatest/ltl2tgba.cc, src/tgbatest/Makefile.am: Adjust. * src/tgbatest/taa.test: Rename as ... * src/tgbatest/taatgba.test ... this. * src/tgbatest/taa.cc: Rename as ... * src/tgbatest/taatgba.cc ... this, and adjust.
This commit is contained in:
parent
d362e752d1
commit
f00aa49dc3
9 changed files with 117 additions and 101 deletions
|
|
@ -41,7 +41,7 @@ check_PROGRAMS = \
|
|||
readsave \
|
||||
reductgba \
|
||||
reduccmp \
|
||||
taa \
|
||||
taatgba \
|
||||
tgbaread \
|
||||
tripprod
|
||||
|
||||
|
|
@ -63,7 +63,7 @@ readsave_SOURCES = readsave.cc
|
|||
reductgba_SOURCES = reductgba.cc
|
||||
reduccmp_SOURCES = reductgba.cc
|
||||
reduccmp_CXXFLAGS = -DREDUCCMP
|
||||
taa_SOURCES = taa.cc
|
||||
taatgba_SOURCES = taatgba.cc
|
||||
tgbaread_SOURCES = tgbaread.cc
|
||||
tripprod_SOURCES = tripprod.cc
|
||||
|
||||
|
|
@ -72,7 +72,7 @@ tripprod_SOURCES = tripprod.cc
|
|||
TESTS = \
|
||||
eltl2tgba.test \
|
||||
explicit.test \
|
||||
taa.test \
|
||||
taatgba.test \
|
||||
tgbaread.test \
|
||||
readsave.test \
|
||||
ltl2tgba.test \
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@
|
|||
#include "ltlenv/defaultenv.hh"
|
||||
#include "ltlast/allnodes.hh"
|
||||
#include "tgbaalgos/dotty.hh"
|
||||
#include "tgba/taa.hh"
|
||||
#include "tgba/taatgba.hh"
|
||||
|
||||
int
|
||||
main()
|
||||
|
|
@ -34,11 +34,11 @@ main()
|
|||
|
||||
spot::ltl::default_environment& e =
|
||||
spot::ltl::default_environment::instance();
|
||||
spot::taa* a = new spot::taa(dict);
|
||||
spot::taa_tgba* a = new spot::taa_tgba(dict);
|
||||
|
||||
typedef spot::taa::transition trans;
|
||||
typedef spot::taa::state state;
|
||||
typedef spot::taa::state_set state_set;
|
||||
typedef spot::taa_tgba::transition trans;
|
||||
typedef spot::taa_tgba::state state;
|
||||
typedef spot::taa_tgba::state_set state_set;
|
||||
|
||||
std::string ss1_values[] = { "state 2", "state 3" };
|
||||
std::vector<std::string> ss1_vector(ss1_values, ss1_values + 2);
|
||||
|
|
@ -3,4 +3,4 @@
|
|||
. ./defs || exit -1
|
||||
set -e
|
||||
|
||||
run 0 ../taa || exit 1
|
||||
run 0 ../taatgba || exit 1
|
||||
Loading…
Add table
Add a link
Reference in a new issue