Bump version to 1.99b to celebrate support for generic acceptance

* configure.ac: Bump version.
* NEWS: Update description of HOA support.
This commit is contained in:
Alexandre Duret-Lutz 2015-02-26 16:42:56 +01:00
parent b321a410d5
commit 7bac775ad4
2 changed files with 13 additions and 13 deletions

24
NEWS
View file

@ -1,4 +1,4 @@
New in spot 1.99a (not yet released) New in spot 1.99b (not yet released)
* Major changes (including backward incompatible changes): * Major changes (including backward incompatible changes):
@ -70,17 +70,17 @@ New in spot 1.99a (not yet released)
order to do batch processing. This format can be output by all order to do batch processing. This format can be output by all
tools (since Spot 1.2.5) using the --hoa option, and it can be tools (since Spot 1.2.5) using the --hoa option, and it can be
read by autfilt (by default) and ltlcross (using the %H read by autfilt (by default) and ltlcross (using the %H
specifier). The current implementation does not support: specifier). The current implementation does not support
- acceptance specifications involving "Fin(x)", "|", or "f". alternation. Multiple initial states are converted into an
- alternation extra initial state; complemented acceptance sets Inf(!x) are
but the rest is expected to work. Those restrictions cause the converted to Inf(x); negated (maybe after duplication); explicit
automaton to be interpretable as a TGBA. In particular, or implicit labels can be used; aliases are supported;
multiple initial states are converted into an extra initial "--ABORT--" can be used in a stream.
state; complemented acceptance sets Inf(!x) are converted to
Inf(x); negated (maybe after duplication); explicit or implicit Note that not all algorithms in the library will work with any
labels can be used; aliases are supported; "--ABORT--" can be acceptance conditions. Automata with acceptance conditions that
used in a stream. The parser currently ignore all optional involve Fin acceptance can be couverted to not use Fin when that
headers (starting with a lowercase letter). is a problem.
- The above HOA parser can also parse never claims, and LBTT - The above HOA parser can also parse never claims, and LBTT
automata, so the never claim parser and the LBTT parser have automata, so the never claim parser and the LBTT parser have

View file

@ -21,7 +21,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
AC_PREREQ([2.61]) AC_PREREQ([2.61])
AC_INIT([spot], [1.99a], [spot@lrde.epita.fr]) AC_INIT([spot], [1.99b], [spot@lrde.epita.fr])
AC_CONFIG_AUX_DIR([tools]) AC_CONFIG_AUX_DIR([tools])
AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_MACRO_DIR([m4])
AM_INIT_AUTOMAKE([1.11 gnu tar-ustar color-tests parallel-tests]) AM_INIT_AUTOMAKE([1.11 gnu tar-ustar color-tests parallel-tests])