Fix simplification of "a M true" as Fa.

* src/ltlvisit/simpfg.cc: Typo.
* src/ltltest/reduccmp.test: Add more tests.
This commit is contained in:
Alexandre Duret-Lutz 2010-04-15 11:44:17 +02:00
parent 9a1769fe78
commit 7021e45f70
3 changed files with 13 additions and 2 deletions

View file

@ -66,6 +66,10 @@ for x in ../reduccmp ../reductaustr; do
run 0 $x 'a | (b U a) | a' '(b U a)'
run 0 $x 'a U (b U a)' '(b U a)'
run 0 $x 'a M 1' 'Fa'
run 0 $x 'a W 0' 'Ga'
run 0 $x '1 U a' 'Fa'
run 0 $x '0 R a' 'Ga'
# Basics reduction
run 0 $x 'X(true)' 'true'