No description
Find a file
Alexandre Duret-Lutz 66b1630c31 Homogenize passing of automata as pointers, not references.
Disallow copy for security.

* src/tgba/tgbabddconcrete.hh (tgba_bdd_concrete): Disallow copy.
* src/tgba/tgbaexplicit.hh (tgba_explicit): Likewise.
* src/tgba/tgbaexplicit.cc (tgba_explicit::operator=,
tgba_explicit::tgba_explicit(tgba_explicit)): Remove.
* src/tgba/tgbabddconcreteproduct.cc
(tgba_bdd_concrete_product_factory::tgba_bdd_concrete_product_factory,
product): Take operand automata as pointers.
* src/tgba/tgbabddconcreteproduct.hh (product): Likewise.
* src/tgba/tgbaproduct.cc, src/tgba/tgbaproduct.hh:
(tgba_product): Disallow copy.
(tgba_product::tgba_product): Take operand automata as pointers.
* src/tgbaalgos/dotty.cc (dotty_state, dotty_rec, dotty_reachable):
Take tgba arguments as pointer.
* src/tgbaalgos/dotty.hh (dotty_reachable): Likewise.
* src/tgbaalgos/lbtt.cc (fill_todo, lbtt_reachable): Likewise.
* src/tgbaalgos/lbtt.hh (lbtt_reachable): Likewise.
* src/tgbaalgos/ltl2tgba.cc, src/tgbaalgos/ltl2tgba.hh (ltl_to_tgba):
Likewise.
* src/tgbaalgos/save.cc (save_rec, tgba_save_reachable): Likewise.
* src/tgbaalgos/save.hh (save): Likewise.
* src/tgbatest/explicit.cc, src/tgbatest/explprod.cc,
src/tgbatest/ltl2tgba.cc, src/tgbatest/ltlprod.cc,
src/tgbatest/mixprod.cc, src/tgbatest/readsave.cc,
src/tgbatest/spotlbtt.cc, src/tgbatest/tgbaread.cc,
src/tgbatest/tripprod.cc: Likewise.
2003-07-14 22:20:35 +00:00
buddy more files to ignore 2003-06-30 07:48:20 +00:00
doc typo 2003-06-30 15:40:02 +00:00
iface Before this change, all automata would construct their own 2003-07-14 21:42:59 +00:00
lbtt * doc/lbtt.texi: Never use @-commands in @node names, recent Texinfo 2003-07-13 14:45:03 +00:00
m4 * m4/lbtt.m4: Run lbtt-translate, not lbtt. 2003-07-12 17:59:47 +00:00
src Homogenize passing of automata as pointers, not references. 2003-07-14 22:20:35 +00:00
tools * m4/pypath.m4: New file. 2003-04-30 12:35:22 +00:00
wrap Check trivial multop equality at build time. The makes the 2003-05-16 07:39:41 +00:00
.cvsignore * m4/pypath.m4: New file. 2003-04-30 12:35:22 +00:00
ChangeLog Homogenize passing of automata as pointers, not references. 2003-07-14 22:20:35 +00:00
configure.ac * configure.ac: Bump version to 0.0e. 2003-07-13 14:57:23 +00:00
HACKING SWIG is needed 2003-04-30 13:20:09 +00:00
INSTALL * INSTALL: New file. 2003-06-26 15:23:33 +00:00
Makefile.am * lbtt/: New directory. Contains a patched version of lbtt 1.0.1. 2003-07-09 15:40:24 +00:00
NEWS * configure.ac: Bump version to 0.0d. 2003-07-13 14:52:38 +00:00
README * configure.ac: Bump version to 0.0d. 2003-07-13 14:52:38 +00:00

Layout of the source tree
=========================

Core directories
----------------

src/           Sources for libspot.
   ltlast/     LTL abstract syntax tree.
   ltlenv/     LTL environments.
   ltlparse/   Parser for LTL formulae.
   ltlvisit/   Visitors of LTL formulae.
   ltltest/    Tests for ltlast/, ltlenv/, ltlparse/, and ltlvisit/.
   misc/       Miscellaneous support files.
   tgba/       TGBA objects and cousins.
   tgbaalgos/  Algorithms on TGBAs.
   tgbaparse/  Parser for explicit TGBAs.
   tgbatest/   Tests for tgba/, tgbaalgos/, and tgbaparse/.
doc/	       Documentation for libspot.
   spot.html/  HTML manual.
   spot.latex/ Sources for the PDF manual. (No distributed, can be rebuilt.)
   spotref.pdf PDF manual.
wrap/	       Wrappers for other languages.
iface/	       Interfaces to other libraries.
   gspn/       GreatSPN interface.


Third party softwares
---------------------

buddy/   A patched version of BuDDy 2.2 (a BDD library).
lbtt/    A patched version of lbtt 1.0.1 (an LTL to Büchi automata test bench).


Build-system stuffs
-------------------

m4/      M4 macros used by configure.ac.
tools/   Helper scripts used during the build.