This commit is contained in:
Alexandre Duret-Lutz 2003-06-03 17:02:33 +00:00
parent 2f19a35e97
commit c4c90de3f6
8 changed files with 64 additions and 50 deletions

View file

@ -1,3 +1,10 @@
2003-06-03 Alexandre Duret-Lutz <adl@gnu.org>
* src/tgba/dictunion.cc, src/tgba/ltl2tgba.cc,
src/tgba/succiterconcrete.cc, src/tgba/tgbabddconcrete.cc,
src/tgba/tgbabddprod.cc, src/tgba/tgbabddtranslatefactory.cc,
src/tgba/tgbabddtranslateproxy.cc: Include <cassert>.
2003-06-02 Alexandre Duret-Lutz <aduret@src.lip6.fr>
* src/tgba/tgbabdddict.cc, src/tgba/tgbabdddict.hh: New files.
@ -92,7 +99,7 @@
not a bdd.
* src/tgba/tgbabddconcrete.cc: Likewise.
Initial code for TGBA (Transition Generalized BŽüchi Automata).
Initial code for TGBA (Transition Generalized Büchi Automata).
Contains tgba_bdd, a BDD-encoded TGBA, and ltl_to_tgba,
a LTL-to-TGBA translator using Couvreur's algorithm.

View file

@ -1,6 +1,7 @@
#include <set>
#include "dictunion.hh"
#include <bdd.h>
#include <cassert>
namespace spot
{

View file

@ -1,6 +1,7 @@
#include "ltlast/visitor.hh"
#include "ltlast/allnodes.hh"
#include "tgbabddconcretefactory.hh"
#include <cassert>
#include "ltl2tgba.hh"

View file

@ -1,4 +1,5 @@
#include "succiterconcrete.hh"
#include <cassert>
namespace spot
{

View file

@ -1,5 +1,6 @@
#include "tgbabddconcrete.hh"
#include "bddprint.hh"
#include <cassert>
namespace spot
{

View file

@ -1,6 +1,7 @@
#include "tgbabddprod.hh"
#include "tgbabddtranslateproxy.hh"
#include "dictunion.hh"
#include <cassert>
namespace spot
{

View file

@ -1,5 +1,6 @@
#include "tgbabddtranslatefactory.hh"
#include "dictunion.hh"
#include <cassert>
namespace spot
{

View file

@ -1,5 +1,6 @@
#include "tgbabddtranslateproxy.hh"
#include "bddprint.hh"
#include <cassert>
namespace spot
{