* src/bin/ltl2tgba.cc: Fix display of BA.

This commit is contained in:
Alexandre Duret-Lutz 2012-09-18 16:04:48 +02:00
parent 10189b2d61
commit 4ed153a247

View file

@ -122,7 +122,6 @@ spot::postprocessor::output_pref pref = spot::postprocessor::Small;
spot::postprocessor::optimization_level level = spot::postprocessor::High;
enum output_format { Dot, Lbtt, Spin, Spot } format = Dot;
static int
parse_opt(int key, char* arg, struct argp_state*)
{
@ -235,7 +234,7 @@ namespace
switch (format)
{
case Dot:
spot::dotty_reachable(std::cout, aut);
spot::dotty_reachable(std::cout, aut, type == spot::postprocessor::BA);
break;
case Lbtt:
spot::lbtt_reachable(std::cout, aut);