* src/ltlvisit/equals.cc, src/ltlvisit/equals.hh: New files.

* src/ltlvisit/Makefile.am (libltlvisit_a_SOURCES): Add equals.hh
and equals.cc.
* src/ltltest/equals.cc, src/ltltest/equals.test: New files.
* src/ltltest/Makefile.am (check_PROGRAMS): Add equals.
(equals_SOURCES): New variable.
(TESTS): Add equals.test.
This commit is contained in:
Alexandre Duret-Lutz 2003-04-16 12:30:21 +00:00
parent eec66e6d07
commit 7425f4a91e
8 changed files with 299 additions and 3 deletions

51
src/ltltest/equals.test Executable file
View file

@ -0,0 +1,51 @@
#! /bin/sh
# Check for the equals visitor
. ./defs || exit 1
check()
{
./equals "$2" "$3"
test $? != $1 && exit 1;
}
check0()
{
check 0 "$@"
}
check1()
{
check 1 "$@"
}
# A few things which are equal
check0 'a' 'a'
check0 '1' '1'
check0 '0' '0'
check0 'a => b' 'a => b'
check0 'G a ' ' G a'
check0 'a U b' 'a U b'
check0 'a & b' 'a & b'
check0 'a & b' 'b & a'
check0 'a & b & c' 'c & a & b'
check0 'a & b & c' 'b & c & a'
check0 'a & b & a' 'b & a & b'
check0 'a & b' 'b & a & b'
check0 'a & b' 'b & a & a'
check0 'a & b & (c |(f U g)| e)' 'b & a & a & (c | e |(f U g)| e | c) & b'
# other formulae which are not
check1 'a' 'b'
check1 '1' '0'
check1 'a => b' 'b => a'
check1 'a => b' 'a <=> b'
check1 'a => b' 'a U b'
check1 'a R b' 'a U b'
check1 'a & b & c' 'c & a'
check1 'b & c' 'c & a & b'
check1 'a & b & (c |(f U g)| e)' 'b & a & a & (c | e |(g U g)| e | c) & b'
# Success.
: