* wrap/python/cgi/ltl2tgba.in: Convert GIFs to PNGs. Restrict

the size of dot's output to 1024x1024.
* src/tgbaalgos/dotty.cc (dotty_bfs::start): Do not preset
the size of the graph.  Set height=0 for the invisible state.
This commit is contained in:
Alexandre Duret-Lutz 2003-08-07 12:14:01 +00:00
parent e88b41d8c9
commit 1276abd290
4 changed files with 32 additions and 13 deletions

View file

@ -18,8 +18,7 @@ namespace spot
start()
{
os_ << "digraph G {" << std::endl;
os_ << " size=\"7.26,10.69\"" << std::endl;
os_ << " 0 [label=\"\", style=invis]" << std::endl;
os_ << " 0 [label=\"\", style=invis, height=0]" << std::endl;
os_ << " 0 -> 1" << std::endl;
}