spot/doc
Alexandre Duret-Lutz 05ed3def00 snf: Fix the handling of bounded repetition.
star_normal_form() used to be called under bounded
repetitions like [*0..4], but some of these rewritings
are only correct for [*0..].  For instance
     (a*|1)[*]      can be rewritten to    1[*]
but  (a*|1)[*0..1]  cannot be rewritten to 1[*0..1]
it would be correct to rewrite the latter as (a[+]|1)[*0..1],
canceling the empty word in a*.

Also (a*;b*)[*]     can be rewritten to    (a|b)[*]
but  (a*;b*)[*0..1]  cannot be rewritten to (a|b)[*0..1]
and it cannot either be rewritten to (a[+]|b[+])[*0..1].

This patch introduces a new function to implement
rewritings under bounded repetition.

* src/ltlvisit/snf.hh, src/ltlvisit/snf.cc (star_normal_form_unbounded):
New function.
* src/ltlvisit/simplify.cc: Use it.
* src/ltltest/reduccmp.test: Add tests.
* doc/tl/tl.tex: Document the rewritings implemented.
2014-05-16 09:39:45 +02:00
..
org Merge branch 'master' into next 2014-05-15 14:30:49 +02:00
tl snf: Fix the handling of bounded repetition. 2014-05-16 09:39:45 +02:00
.cvsignore more files to ignore 2003-07-15 11:51:32 +00:00
.gitignore org: document dstar2tgba. 2013-08-26 17:27:39 +02:00
dot.in Upgrade GPL v2+ to GPL v3+. 2012-10-12 22:05:18 +02:00
Doxyfile.in * doc/Doxyfile.in: Hide private functions and member. Enable search. 2013-07-29 01:14:37 +02:00
footer.html Improve documentation here and there. 2013-06-09 15:55:57 +02:00
mainpage.dox Improve documentation here and there. 2013-06-09 15:55:57 +02:00
Makefile.am testsuite: find files when building in remote directory 2014-02-10 16:56:20 +01:00