* iface/gspn/dcswaveltl.test, iface/gspn/dcswavefm.test, iface/gspn/dcswaveeltl.test, iface/gspn/udcsltl.test, iface/gspn/udcseltl.test, iface/gspn/udcsfm.test, iface/gspn/udcsefm.test: Wrap to fit 80 columns.
22 lines
566 B
Bash
Executable file
22 lines
566 B
Bash
Executable file
#! /bin/sh
|
|
|
|
. ./defs || exit 1
|
|
|
|
set -e
|
|
|
|
cp -R $srcdir/examples/DCSwave .
|
|
chmod +w DCSwave
|
|
|
|
# G(ATTiIDLj => F(!SCj U SCi)) is true
|
|
../ltlgspn-srg -c -l -e DCSwave/DCSWave \
|
|
'!G(ATTiIDLj => F(!SCj U SCi))' ATTiIDLj SCi SCj >output
|
|
../ltlgspn-srg -c -f -e2 DCSwave/DCSWave \
|
|
'!G(ATTiIDLj => F(!SCj U SCi))' ATTiIDLj SCi SCj >output
|
|
|
|
# G(F(!SCj U SCi)) is false
|
|
../ltlgspn-srg -c -l -e DCSwave/DCSWave \
|
|
'!G(F(!SCj U SCi))' ATTiIDLj SCi SCj >output && exit 1
|
|
../ltlgspn-srg -c -f -e2 DCSwave/DCSWave \
|
|
'!G(F(!SCj U SCi))' ATTiIDLj SCi SCj >output && exit 1
|
|
|
|
:
|