* src/sanity/style.test: Test for the missing header. * iface/ltsmin/check.test, src/kripketest/kripke.test, src/kripketest/parse_print_test.cc, src/ltlparse/fmterror.cc, src/ltltest/consterm.test, src/ltltest/kind.test, src/ltltest/length.test, src/ltltest/ltlfilt.test, src/ltltest/reduc.cc, src/ltltest/reduc.test, src/ltltest/reduc0.test, src/ltltest/reducpsl.test, src/ltltest/remove_x.test, src/ltltest/unabbrevwm.test, src/ltltest/utf8.test, src/ltltest/uwrm.test, src/ltlvisit/dump.cc, src/ltlvisit/remove_x.cc, src/misc/casts.hh, src/misc/fixpool.hh, src/misc/hashfunc.hh, src/misc/ltstr.hh, src/sanity/readme.test, src/taalgos/tgba2ta.cc, src/tgbaalgos/bfssteps.cc, src/tgbaalgos/stats.cc, src/tgbatest/acc.test, src/tgbatest/bitvect.test, src/tgbatest/complementation.test, src/tgbatest/cycles.test, src/tgbatest/degendet.test, src/tgbatest/dfs.test, src/tgbatest/dupexp.test, src/tgbatest/emptchkr.test, src/tgbatest/intvcomp.test, src/tgbatest/ltl2ta.test, src/tgbatest/ltl2ta2.test, src/tgbatest/ltlprod.test, src/tgbatest/maskacc.test, src/tgbatest/obligation.test, src/tgbatest/randpsl.test, src/tgbatest/readsat.cc, src/tgbatest/readsat.test, src/tgbatest/scc.test, src/tgbatest/sccsimpl.test, src/tgbatest/taatgba.test, src/tgbatest/tgbaread.test, src/tgbatest/tripprod.test, src/tgbatest/uniq.test, src/tgbatest/wdba.test: Add it.
61 lines
1.9 KiB
Bash
Executable file
61 lines
1.9 KiB
Bash
Executable file
#! /bin/sh
|
|
# -*- coding: utf-8 -*-
|
|
# Copyright (C) 2012, 2014, 2015 Laboratoire de Recherche et
|
|
# Développement de l'Epita (LRDE).
|
|
#
|
|
# This file is part of Spot, a model checking library.
|
|
#
|
|
# Spot is free software; you can redistribute it and/or modify it
|
|
# under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# Spot is distributed in the hope that it will be useful, but WITHOUT
|
|
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
|
|
# License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
# Check LTL reductions for U, W, M and R.
|
|
# These formulas comes from an appendix of tl/tl.tex
|
|
|
|
. ./defs || exit 1
|
|
set -e
|
|
|
|
cat >input.txt<<EOF
|
|
# Equivalences with U
|
|
1 U f, Ff
|
|
!F!f, !(1 U!f), Gf
|
|
(f U g)|(G f), (f U g) | !(1 U ! f), f U (g | G f), f U (g | !(1 U !f)), f W g
|
|
g U (f & g), f M g
|
|
g W (f & g), (g U (f & g)) | !(1 U ! g), g U ((f & g) | !(1 U ! g)), f R g
|
|
|
|
# Equivalences with W
|
|
!G!f, !((! f) W 0), Ff
|
|
0 R f, f W 0, Gf
|
|
(f W g) & (F g), (f W g) & !((! g) W 0), f U g
|
|
(g W (f & g)) & (F f), (g W (f & g)) & !((!f) W 0), f M g
|
|
g W (f & g), f R g
|
|
|
|
# Equivalences with R
|
|
!G!f, !(0 R !f), Ff
|
|
0 R f, Gf
|
|
# (((X g) R f) & F g) | g, (((X g) R f ) & (!(0 R ! g))) | g, f U g
|
|
((X g) R f) | g, g R (f | g), f W g
|
|
(f R g) & F f, (f R g) & !(0 R !f), f R (g & F f), f R (g & !(0 R !f)), f M g
|
|
|
|
# Equivalences with M
|
|
f M 1, Ff
|
|
!F!f, !((!f) M 1), Gf
|
|
((X g) M f) | g, g M (f | g), f U g
|
|
(f U g) | G f, ((X g) M f) | g | !((! f ) M 1), f W g
|
|
(f M g) | G g, (f M g) | !((! g) M 1), f R g
|
|
|
|
# Example from tl.tex
|
|
#(((f U (Xg & f))|!(1 U !f))&(1 U Xg)) | g, f U g
|
|
EOF
|
|
|
|
run 0 ../reduccmp input.txt
|