* configure.ac, NEWS: Bump version to 0.0h.

* wrap/python/cgi/Makefile.am (CLEANFILES): Clean ltl2tgba.py.
This commit is contained in:
Alexandre Duret-Lutz 2003-08-18 15:24:21 +00:00
parent f4e9c1defa
commit 1f0060b716
4 changed files with 15 additions and 2 deletions

View file

@ -1,5 +1,8 @@
2003-08-18 Alexandre Duret-Lutz <aduret@src.lip6.fr> 2003-08-18 Alexandre Duret-Lutz <aduret@src.lip6.fr>
* configure.ac, NEWS: Bump version to 0.0h.
* wrap/python/cgi/Makefile.am (CLEANFILES): Clean ltl2tgba.py.
* wrap/python/tests/ltl2tgba.test: Run $srcdir/ltl2tgba.py, not * wrap/python/tests/ltl2tgba.test: Run $srcdir/ltl2tgba.py, not
ltl2tgba.py. ltl2tgba.py.

11
NEWS
View file

@ -1,3 +1,12 @@
New in spot 0.0h (2003-08-18):
* More python bindings:
- "import buddy" works (see wrap/python/tests/bddnqueen.py for an example),
- almost all the Spot API is now available via "import spot".
* wrap/python/cgi/ltl2tgba.py is an LTL-to-Büchi translator that
work as as a cgi script.
* Couvreur's FM'99 ltl-to-tgba translation.
New in spot 0.0f (2003-08-01): New in spot 0.0f (2003-08-01):
* More python bindings, still only for the spot::ltl:: namespace. * More python bindings, still only for the spot::ltl:: namespace.
@ -5,7 +14,7 @@ New in spot 0.0f (2003-08-01):
* The LTL scanner recognizes /\, \/, and xor. * The LTL scanner recognizes /\, \/, and xor.
* Upgrade to lbtt 1.0.2. * Upgrade to lbtt 1.0.2.
* tgba_tba_proxy is an on-the-fly degeneralizer. * tgba_tba_proxy is an on-the-fly degeneralizer.
* Implements the "magic search" algorithm. * Implements the "magic search" algorithm.
(Works only on a tgba_tba_proxy.) (Works only on a tgba_tba_proxy.)
* Tgba's output algorithms (save(), dotty()) now non-recursive. * Tgba's output algorithms (save(), dotty()) now non-recursive.
* During products, succ_iter will optimize its set of successors * During products, succ_iter will optimize its set of successors

View file

@ -1,5 +1,5 @@
AC_PREREQ([2.57]) AC_PREREQ([2.57])
AC_INIT([spot], [0.0g]) AC_INIT([spot], [0.0h])
AC_CONFIG_AUX_DIR([tools]) AC_CONFIG_AUX_DIR([tools])
AM_INIT_AUTOMAKE([foreign nostdinc check-news 1.7.3]) AM_INIT_AUTOMAKE([foreign nostdinc check-news 1.7.3])

View file

@ -1,5 +1,6 @@
nodist_noinst_SCRIPTS = ltl2tgba.py nodist_noinst_SCRIPTS = ltl2tgba.py
EXTRA_DIST = $(srcdir)/ltl2tgba.in README EXTRA_DIST = $(srcdir)/ltl2tgba.in README
CLEANFILES = $(nodist_noinst_SCRIPTS)
ltl2tgba.py: $(srcdir)/ltl2tgba.in Makefile ltl2tgba.py: $(srcdir)/ltl2tgba.in Makefile
sed -e 's|[@]PYTHON[@]|@PYTHON@|g' \ sed -e 's|[@]PYTHON[@]|@PYTHON@|g' \