spot/lbtt
Alexandre Duret-Lutz 3793454864 [lbtt] Fix issues reported by Clang++ 3.1.
* src/Graph.h.in (PathElement::hasEdge): Check the correct
pointer, not the address of some member function.
* src/BuchiAutomaton.cc, src/Configuration.cc,
src/TestOperations.cc, src/TestOperations.h: Recode these files in
utf-8.
2012-07-02 17:35:22 +02:00
..
doc [lbtt] Fix make pdf. 2012-04-27 22:47:54 +02:00
m4 * m4/intel.m4: Fix to support the cache. 2009-07-09 21:29:50 +02:00
src [lbtt] Fix issues reported by Clang++ 3.1. 2012-07-02 17:35:22 +02:00
.cvsignore more files to ignore 2003-07-30 13:41:47 +00:00
.gitignore Add .gitignore files 2008-03-14 16:59:32 +01:00
AUTHORS fix status of lbtt's subtree. Apparently it was messed up during the cvsimport 2008-02-25 14:30:09 +01:00
ChangeLog [lbtt] Fix issues reported by Clang++ 3.1. 2012-07-02 17:35:22 +02:00
configure.ac [lbtt] Make it clearer this is not LBTT 1.2.1. 2012-05-21 15:37:42 +02:00
COPYING Initial revision 2002-10-01 14:21:01 +00:00
Makefile.am [lbtt] Adjust to support the Intel compiler (icpc). 2009-06-12 16:38:25 +02:00
NEWS [lbtt] Fix issues reported by Clang++ 3.1. 2012-07-02 17:35:22 +02:00
README [lbtt] Make it clearer this is not LBTT 1.2.1. 2012-05-21 15:37:42 +02:00

+-----------------------------------------------------------------------+
| This version of LBTT, distributed with Spot, contains several changes |
| that are not in the original version 1.2.1 released in 2008.          |
| Unfortunately Heikki Tiaurainen left the TCS lab of TKK and nobody is |
| maintaining LBTT at TKK currently.  Please report any issue with this |
| modified version, named 1.2.1a, to <spot@lrde.epita.fr>.  See NEWS    |
| and ChangeLog for the list of changes.                                |
+-----------------------------------------------------------------------+

lbtt version 1.2.1
------------------

lbtt is a tool for testing programs that translate formulas
expressed in propositional linear temporal logic (LTL) into
Büchi automata.  The goal of the tool is to assist implementing
LTL-to-Büchi translation algorithms correctly by providing an
automated testing environment for LTL-to-Büchi translators.
Additionally, the testing environment can be used for very basic
profiling of different LTL-to-Büchi translators to evaluate their
performance.

The latest version of the program is available at
<http://www.tcs.hut.fi/Software/lbtt/>.

lbtt is free software, you may change and redistribute it under
the terms of the GNU General Public License.  lbtt comes with
NO WARRANTY.  See the file COPYING for details.


Brief installation instructions:
--------------------------------

    The basic procedure to build lbtt, the associated tools
    and GNU info documentation is to enter the following
    commands in the top-level package directory (the directory
    that contains this file):

        ./configure
        make

    These commands should create two executable files
    (`lbtt' and `lbtt-translate') in the `src' subdirectory
    and GNU info documentation under the `doc' subdirectory.
    The program and documentation can be used directly in
    their build directories.  Optionally, the program binaries
    and documentation can be installed in their default
    location (under `/usr/local/') by entering the command

        make install

    after the build process is complete.  (To change the
    default installation directory, the `configure' script
    should be invoked with an appropriate `--prefix=PATH'
    option before running `make'.  Please see the file INSTALL
    for generic information about running `configure'.)


Documentation:
--------------

    The default build procedure builds the program documentation
    in the `doc' subdirectory only in `info' format.  Assuming
    you have the GNU Info documentation browser installed, the
    documentation can be viewed by running the command
    `info -f doc/lbtt.info' after the program build is
    complete.

    The documentation can be optionally generated in DVI
    or HTML formats using the TeX typesetting program and the
    GNU texinfo tools.  To create DVI documentation, run the
    command

        make dvi

    in the top-level package directory.  If you have TeX and
    the GNU texinfo tools properly installed, this command
    should generate a file `lbtt.dvi' in the `doc' subdirectory.

    The documentation can be also generated in HTML format by
    running `makeinfo --html' on the file `lbtt.texi' in the
    `doc' subdirectory.

    Note: The generated DVI or HTML files refer to two
    auxiliary picture files (`testprocedure.EXT' and
    `intersectioncheck.EXT', where EXT stands for `eps' for
    DVI documentation, `png' for HTML documentation)
    residing in the `doc' subdirectory.  To see the figures
    included in the documentation correctly, make sure that
    the program used for viewing the documentation can find
    these files when needed.

    The documentation is also available in various formats
    at the program's home page at
    <http://www.tcs.hut.fi/Software/lbtt/>.