diff --git a/ChangeLog b/ChangeLog index 30a7bef75..888c65e5d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2010-01-30 Alexandre Duret-Lutz + + More * -> & replacements. + + * src/ltltest/parse.test, src/ltltest/syntimpl.test: Replace * by &. + 2010-01-30 Alexandre Duret-Lutz Remove the theoretically bogus "containment" option of ltl2tgba_fm. diff --git a/src/ltltest/parse.test b/src/ltltest/parse.test index dddb9d426..43e42c4f1 100755 --- a/src/ltltest/parse.test +++ b/src/ltltest/parse.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009 Laboratoire de Recherche et Développement +# Copyright (C) 2009, 2010 Laboratoire de Recherche et Développement # de l'Epita (LRDE). # Copyright (C) 2003, 2004 Laboratoire d'Informatique de Paris 6 (LIP6), # département Systèmes Répartis Coopératifs (SRC), Université Pierre @@ -38,7 +38,7 @@ for f in \ 'p11011' \ '(p11011)' \ 'a & b' \ - 'a * _b12' \ + 'a & _b12' \ 'a . b' \ 'a + b' \ 'a3214 | b' \ @@ -67,10 +67,10 @@ for f in \ '()b' \ 'long_atomic_proposition_1 U long_atomic_proposition_2' \ ' ab & ac | ad ^ af' \ - '((b * a) + a) & d' \ + '((b & a) + a) & d' \ '(ab & ac | ad ) <=> af ' \ 'a U b U c U d U e U f U g U h U i U j U k U l U m' \ - '(ab * !Xad + ad U ab) & FG p12 /\ GF p13' \ + '(ab & !Xad + ad U ab) & FG p12 /\ GF p13' \ '((([]<>()p12)) )' \ 'a R ome V anille' \ 'p=0Uq=1' \ diff --git a/src/ltltest/syntimpl.test b/src/ltltest/syntimpl.test index 18474094a..921ce2652 100755 --- a/src/ltltest/syntimpl.test +++ b/src/ltltest/syntimpl.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009 Laboratoire de Recherche et Développement +# Copyright (C) 2009, 2010 Laboratoire de Recherche et Développement # de l'Epita (LRDE). # Copyright (C) 2004 Laboratoire d'Informatique de Paris 6 (LIP6), # département Systèmes Répartis Coopératifs (SRC), Université Pierre @@ -48,10 +48,10 @@ run 1 ../syntimpl 0 '0' '0' run 1 ../syntimpl 0 'a' '1' run 1 ../syntimpl 0 'a' 'a' -run 1 ../syntimpl 0 'a' 'a * 1' +run 1 ../syntimpl 0 'a' 'a & 1' -run 1 ../syntimpl 0 'a * b' 'b' -run 1 ../syntimpl 0 'a * b' 'a' +run 1 ../syntimpl 0 'a & b' 'b' +run 1 ../syntimpl 0 'a & b' 'a' run 1 ../syntimpl 0 'a' 'a + b' run 1 ../syntimpl 0 'b' 'a + b' @@ -73,7 +73,7 @@ run 1 ../syntimpl 0 'X(a R b)' 'Xb' run 1 ../syntimpl 0 'a U b' '1 U b' run 1 ../syntimpl 0 'a R b' '1 R b' -run 1 ../syntimpl 0 'b * (a U b)' 'a U b' +run 1 ../syntimpl 0 'b & (a U b)' 'a U b' run 1 ../syntimpl 0 'a U b' 'c + (a U b)' run 0 ../syntimpl 0 'Xa' 'XX(b U a)' @@ -85,8 +85,8 @@ run 0 ../syntimpl 0 '( X(a + b)) U (e R f)' '( X(X(a + b)+(c)+(d))) U (g U f)' run 0 ../syntimpl 0 'a' 'b' run 0 ../syntimpl 0 'a' 'b + c' run 0 ../syntimpl 0 'a + b' 'a' -run 0 ../syntimpl 0 'a' 'a * c' -run 0 ../syntimpl 0 'a * b' 'c' +run 0 ../syntimpl 0 'a' 'a & c' +run 0 ../syntimpl 0 'a & b' 'c' run 0 ../syntimpl 0 'a' 'a U b' run 0 ../syntimpl 0 'a' 'a R b' run 0 ../syntimpl 0 'a R b' 'a'