* src/tgba/ltl2tgba.hh, src/tgba/ltl2tgba.cc: Move ...
* src/tgbaalgos/ltl2tgba.hh, src/tgbaalgos/ltl2tgba.cc: ... here. * src/tgba/Makefile.am, src/tgbaalgos/Makefile.am: Adjust. * src/tgba/public.hh: Do not include ltl2tgba.hh. * src/tgbatests/explprod.cc, src/tgbatests/ltl2tgba.cc, src/tgbatests/ltlprod.cc, src/tgbatests/mixprod.cc, src/tgbatests/reach.cc, src/tgbatests/tripprod.cc: Adjust inclusions.
This commit is contained in:
parent
f4629246f7
commit
7fdd78614c
11 changed files with 18 additions and 10 deletions
|
|
@ -1,5 +1,13 @@
|
||||||
2003-06-26 Alexandre Duret-Lutz <aduret@src.lip6.fr>
|
2003-06-26 Alexandre Duret-Lutz <aduret@src.lip6.fr>
|
||||||
|
|
||||||
|
* src/tgba/ltl2tgba.hh, src/tgba/ltl2tgba.cc: Move ...
|
||||||
|
* src/tgbaalgos/ltl2tgba.hh, src/tgbaalgos/ltl2tgba.cc: ... here.
|
||||||
|
* src/tgba/Makefile.am, src/tgbaalgos/Makefile.am: Adjust.
|
||||||
|
* src/tgba/public.hh: Do not include ltl2tgba.hh.
|
||||||
|
* src/tgbatests/explprod.cc, src/tgbatests/ltl2tgba.cc,
|
||||||
|
src/tgbatests/ltlprod.cc, src/tgbatests/mixprod.cc,
|
||||||
|
src/tgbatests/reach.cc, src/tgbatests/tripprod.cc: Adjust inclusions.
|
||||||
|
|
||||||
* src/tgba/tgbabddcoredata.hh: Fix some Doxygen comments.
|
* src/tgba/tgbabddcoredata.hh: Fix some Doxygen comments.
|
||||||
* src/ltlast/formula.hh: More Doxygen comments.
|
* src/ltlast/formula.hh: More Doxygen comments.
|
||||||
* src/tgba/tgba.hh: Use <tt> in Doxygen comments.
|
* src/tgba/tgba.hh: Use <tt> in Doxygen comments.
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,6 @@ tgba_HEADERS = \
|
||||||
bddfactory.hh \
|
bddfactory.hh \
|
||||||
bddprint.hh \
|
bddprint.hh \
|
||||||
dictunion.hh \
|
dictunion.hh \
|
||||||
ltl2tgba.hh \
|
|
||||||
public.hh \
|
public.hh \
|
||||||
state.hh \
|
state.hh \
|
||||||
statebdd.hh \
|
statebdd.hh \
|
||||||
|
|
@ -30,7 +29,6 @@ libtgba_la_SOURCES = \
|
||||||
bddfactory.cc \
|
bddfactory.cc \
|
||||||
bddprint.cc \
|
bddprint.cc \
|
||||||
dictunion.cc \
|
dictunion.cc \
|
||||||
ltl2tgba.cc \
|
|
||||||
statebdd.cc \
|
statebdd.cc \
|
||||||
succiterconcrete.cc \
|
succiterconcrete.cc \
|
||||||
tgbabddconcrete.cc \
|
tgbabddconcrete.cc \
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,6 @@
|
||||||
# include "tgba.hh"
|
# include "tgba.hh"
|
||||||
# include "tgbabddconcrete.hh"
|
# include "tgbabddconcrete.hh"
|
||||||
# include "tgbabddconcreteproduct.hh"
|
# include "tgbabddconcreteproduct.hh"
|
||||||
# include "ltl2tgba.hh"
|
|
||||||
# include "bddprint.hh"
|
# include "bddprint.hh"
|
||||||
|
|
||||||
#endif // SPOT_TGBA_PUBLIC_HH
|
#endif // SPOT_TGBA_PUBLIC_HH
|
||||||
|
|
|
||||||
|
|
@ -5,9 +5,12 @@ tgbaalgosdir = $(pkgincludedir)/tgbaalgos
|
||||||
|
|
||||||
tgbaalgos_HEADERS = \
|
tgbaalgos_HEADERS = \
|
||||||
dotty.hh \
|
dotty.hh \
|
||||||
|
ltl2tgba.hh \
|
||||||
save.hh
|
save.hh
|
||||||
|
|
||||||
noinst_LTLIBRARIES = libtgbaalgos.la
|
noinst_LTLIBRARIES = libtgbaalgos.la
|
||||||
libtgbaalgos_la_SOURCES = \
|
libtgbaalgos_la_SOURCES = \
|
||||||
dotty.cc \
|
dotty.cc \
|
||||||
|
ltl2tgba.cc \
|
||||||
save.cc
|
save.cc
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
#include "ltlvisit/lunabbrev.hh"
|
#include "ltlvisit/lunabbrev.hh"
|
||||||
#include "ltlvisit/nenoform.hh"
|
#include "ltlvisit/nenoform.hh"
|
||||||
#include "ltlvisit/destroy.hh"
|
#include "ltlvisit/destroy.hh"
|
||||||
#include "tgbabddconcretefactory.hh"
|
#include "tgba/tgbabddconcretefactory.hh"
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
|
|
||||||
#include "ltl2tgba.hh"
|
#include "ltl2tgba.hh"
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
# define SPOT_TGBA_LTL2TGBA_HH
|
# define SPOT_TGBA_LTL2TGBA_HH
|
||||||
|
|
||||||
#include "ltlast/formula.hh"
|
#include "ltlast/formula.hh"
|
||||||
#include "tgbabddconcrete.hh"
|
#include "tgba/tgbabddconcrete.hh"
|
||||||
|
|
||||||
namespace spot
|
namespace spot
|
||||||
{
|
{
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
#include "tgba/ltl2tgba.hh"
|
#include "tgbaalgos/ltl2tgba.hh"
|
||||||
#include "tgba/tgbaexplicit.hh"
|
#include "tgba/tgbaexplicit.hh"
|
||||||
#include "tgba/tgbaproduct.hh"
|
#include "tgba/tgbaproduct.hh"
|
||||||
#include "tgbaparse/public.hh"
|
#include "tgbaparse/public.hh"
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
#include "ltlvisit/destroy.hh"
|
#include "ltlvisit/destroy.hh"
|
||||||
#include "ltlast/allnodes.hh"
|
#include "ltlast/allnodes.hh"
|
||||||
#include "ltlparse/public.hh"
|
#include "ltlparse/public.hh"
|
||||||
#include "tgba/ltl2tgba.hh"
|
#include "tgbaalgos/ltl2tgba.hh"
|
||||||
#include "tgba/bddprint.hh"
|
#include "tgba/bddprint.hh"
|
||||||
#include "tgba/tgbabddtranslatefactory.hh"
|
#include "tgba/tgbabddtranslatefactory.hh"
|
||||||
#include "tgbaalgos/dotty.hh"
|
#include "tgbaalgos/dotty.hh"
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
#include "ltlvisit/destroy.hh"
|
#include "ltlvisit/destroy.hh"
|
||||||
#include "ltlast/allnodes.hh"
|
#include "ltlast/allnodes.hh"
|
||||||
#include "ltlparse/public.hh"
|
#include "ltlparse/public.hh"
|
||||||
#include "tgba/ltl2tgba.hh"
|
#include "tgbaalgos/ltl2tgba.hh"
|
||||||
#include "tgba/tgbaproduct.hh"
|
#include "tgba/tgbaproduct.hh"
|
||||||
#include "tgba/tgbabddconcreteproduct.hh"
|
#include "tgba/tgbabddconcreteproduct.hh"
|
||||||
#include "tgbaalgos/dotty.hh"
|
#include "tgbaalgos/dotty.hh"
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
#include "ltlvisit/destroy.hh"
|
#include "ltlvisit/destroy.hh"
|
||||||
#include "ltlast/allnodes.hh"
|
#include "ltlast/allnodes.hh"
|
||||||
#include "ltlparse/public.hh"
|
#include "ltlparse/public.hh"
|
||||||
#include "tgba/ltl2tgba.hh"
|
#include "tgbaalgos/ltl2tgba.hh"
|
||||||
#include "tgba/tgbaproduct.hh"
|
#include "tgba/tgbaproduct.hh"
|
||||||
#include "tgba/tgbabddconcreteproduct.hh"
|
#include "tgba/tgbabddconcreteproduct.hh"
|
||||||
#include "tgbaparse/public.hh"
|
#include "tgbaparse/public.hh"
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
#include "tgba/ltl2tgba.hh"
|
#include "tgbaalgos/ltl2tgba.hh"
|
||||||
#include "tgba/tgbaexplicit.hh"
|
#include "tgba/tgbaexplicit.hh"
|
||||||
#include "tgba/tgbaproduct.hh"
|
#include "tgba/tgbaproduct.hh"
|
||||||
#include "tgbaparse/public.hh"
|
#include "tgbaparse/public.hh"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue