* iface/gspn/dcswavefm.test: New file.

* iface/gspn/Makefile.am (check_PROGRAMS): Add fmgspn-rg and
fmgspn-srg.
(fmgspn_rg_SOURCES, fmgspn_rg_CPPFLAGS, fmgspn_rg_LDADD,
fmgspn_srg_SOURCES, fmgspn_srg_CPPFLAGS, fmgspn_srg_LDADD):
New variables.
(TESTS): Add dcswavefm.test.
This commit is contained in:
Alexandre Duret-Lutz 2003-08-20 09:56:12 +00:00
parent 138ce95cca
commit e238135bc1
4 changed files with 43 additions and 2 deletions

View file

@ -4,6 +4,7 @@
#include "tgba/tgbatba.hh"
#include "tgba/tgbaproduct.hh"
#include "tgbaalgos/ltl2tgba.hh"
#include "tgbaalgos/ltl2tgba_fm.hh"
#include "tgbaalgos/magic.hh"
int
@ -34,7 +35,11 @@ main(int argc, char **argv)
spot::gspn_interface gspn(2, argv);
spot::bdd_dict* dict = new spot::bdd_dict();
#if FM
spot::tgba* a_f = spot::ltl_to_tgba_fm(f, dict);
#else
spot::tgba* a_f = spot::ltl_to_tgba(f, dict);
#endif
spot::ltl::destroy(f);
spot::tgba* model = new spot::tgba_gspn(dict, env);