* src/tgbatest/ltl2tgba.cc: Add option -t to output the LBTT automata.

* src/tgbaalgos/lbtt.cc, src/tgbaalgos/lbtt.hh: New files.
* src/tgbaalgos/Makefile.am (tgbaalgos_HEADERS): Add lbtt.hh.
(libtgbaalgos_la_SOURCES): Add lbtt.cc.
* src/tgba/bddprint.cc (print_sat_handler): Put a space after "!".
* src/tgbatest/readsave.test: Adjust spaces after "!".
This commit is contained in:
Alexandre Duret-Lutz 2003-07-08 15:45:11 +00:00
parent a307c0d0ae
commit f9c8eb1cb7
7 changed files with 272 additions and 3 deletions

View file

@ -73,7 +73,8 @@ namespace spot
else
not_first = true;
if (varset[v] == 0)
*where << "!";
// The space is important for LBTT.
*where << "! ";
print_handler(*where, v);
}
}