* src/tgbatest/ltl2tgba.cc (main): Delete the reduced automaton

before the degeneralized automaton.
This commit is contained in:
Alexandre Duret-Lutz 2005-04-14 09:21:59 +00:00
parent 98236cf656
commit 7753938fe9
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2005-04-14 Alexandre Duret-Lutz <adl@src.lip6.fr>
* src/tgbatest/ltl2tgba.cc (main): Delete the reduced automaton
before the degeneralized automaton.
2005-04-13 Alexandre Duret-Lutz <adl@src.lip6.fr> 2005-04-13 Alexandre Duret-Lutz <adl@src.lip6.fr>
* doc/Makefile.am (doc, $(srcdir)/stamp): Ignore rm's errors. * doc/Makefile.am (doc, $(srcdir)/stamp): Ignore rm's errors.

View file

@ -759,8 +759,8 @@ main(int argc, char** argv)
delete product_to_free; delete product_to_free;
delete system; delete system;
delete expl; delete expl;
delete degeneralized;
delete aut_red; delete aut_red;
delete degeneralized;
delete to_free; delete to_free;
delete echeck_inst; delete echeck_inst;
} }