diff --git a/ChangeLog b/ChangeLog index 2e53c2a7d..efb9cbc9c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-01-24 Alexandre Duret-Lutz + + * wrap/python/cgi/ltl2tgba.in: Fix degeneralisation and output of + accepting runs. + 2006-01-10 Alexandre Duret-Lutz * wrap/python/spot.i: Wrap spot::emptiness_check_instantiator. diff --git a/wrap/python/cgi/ltl2tgba.in b/wrap/python/cgi/ltl2tgba.in index 502ca8472..452c883cb 100644 --- a/wrap/python/cgi/ltl2tgba.in +++ b/wrap/python/cgi/ltl2tgba.in @@ -504,7 +504,7 @@ if show_automaton_png: if show_degen_png or show_never_claim: print '

Degeneralized automaton

' - degen = spot.tgba_tba_proxy(automaton) + degen = spot.tgba_sba_proxy(automaton) dont_run_dot = print_stats(degen) if show_degen_png: render_automaton(imgprefix + '-d', degen, dont_run_dot) @@ -566,6 +566,7 @@ if show_lbtt: if draw_acc_run or print_acc_run: print '

Accepting run

' + sys.stdout.flush() err = "" opt = emptiness_check + "(" + emptiness_check_options + ")" eci, err = spot.emptiness_check_instantiator.construct(opt)