Tweak precedence of "->" and <->.
* src/ltlparse/ltlparse.yy: Change the precedence of "->" and "<->" so that "a & b -> c" is interpreted as "(a & b) -> c" instead of "a & (b -> c)". The new interpretation is more intuitive, and matches that of LBTT.
This commit is contained in:
parent
cc66aff634
commit
351a8076d0
2 changed files with 11 additions and 2 deletions
|
|
@ -1,3 +1,12 @@
|
|||
2010-03-06 Alexandre Duret-Lutz <adl@lrde.epita.fr>
|
||||
|
||||
Tweak precedence of "->" and <->.
|
||||
|
||||
* src/ltlparse/ltlparse.yy: Change the precedence of "->" and
|
||||
"<->" so that "a & b -> c" is interpreted as "(a & b) -> c"
|
||||
instead of "a & (b -> c)". The new interpretation is more
|
||||
intuitive, and matches that of LBTT.
|
||||
|
||||
2010-03-06 Alexandre Duret-Lutz <adl@lrde.epita.fr>
|
||||
|
||||
* bench/ltl2tgba/formulae.ltl: Fix three formulae to match the
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
/* 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, 2005, 2006 Laboratoire d'Informatique de
|
||||
** Paris 6 (LIP6), département Systèmes Répartis Coopératifs (SRC),
|
||||
|
|
@ -93,10 +93,10 @@ using namespace spot::ltl;
|
|||
/* Priorities. */
|
||||
|
||||
/* Logical operators. */
|
||||
%left OP_IMPLIES OP_EQUIV
|
||||
%left OP_OR
|
||||
%left OP_XOR
|
||||
%left OP_AND
|
||||
%left OP_IMPLIES OP_EQUIV
|
||||
|
||||
/* LTL operators. */
|
||||
%left OP_U OP_R
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue